Genome Assembly workshop

Software List

• Velvet

Current version 1.2.10

Source code in C language
https://www.ebi.ac.uk/~zerbino/velvet/

• VelvetOptimiser

Current version 2.2.5

Perl script
Requirements
• Velvet >= 0.7.51 (including 1.x series) : Velvet 1.2.10
• Perl >= 5.8
• BioPerl >= 1.4
http://www.vicbioinformatics.com/software.velvetoptimiser.shtml

• SPAdes

Current version 3.12

Executable files (Linux 64 bits and MacOSx) and Source code
http://cab.spbu.ru/software/spades/

• MaSuRCA

Current version 3.2.8

Source code in C language
https://github.com/alekseyzimin/masurca

Raw data

Use a part of Chr11 of Solanum lycopersicum (Tomato)
Chr11 ~53 Mbp -> ~ 4.8 Mbp
       Generate simulated illumina Paired-end FASTQ files
  • 151 bp paired-end reads
  • Insertion length 300 bp

Location : /home/chumpol/AssemblyWS

• FASTA -> Reference sequence in FASTA formatted (cabV2.fa)

• FASTQ -> illumina paired-end reads in FASTQ formatted (cabV2_read1.fq.gz, cabV2_read2.fq.gz)

Preparing storage for raw reads

  • Login to server (158.108.144.7)
In [ ]:
ssh annotest@158.108.144.7
  • Create the directory for workshop
  • In [ ]:
    mkdir AssemblyWS
    
    In [31]:
    dirWS = "/home/annotest/AssemblyWS"
    
    In [32]:
    cd {dirWS}
    
    /home/annotest/AssemblyWS
    
    In [34]:
    %%bash
    ln -s /home/chumpol/AssemblyWS/FASTQ .
    
    In [ ]:
    %%bash
    ln -s /home/chumpol/AssemblyWS/FASTA .
    
  • Check raw data directory
  • In [39]:
    ls -l
    
    total 0
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 30 Aug  7 15:52 FASTA -> /home/chumpol/AssemblyWS/FASTA/
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 30 Aug  7 15:52 FASTQ -> /home/chumpol/AssemblyWS/FASTQ/
    

    Velvet Assembler

    • Check the velvet executable files (velveth and velvetg)
    In [14]:
    %%bash
    velveth
    
    velveth - simple hashing program
    Version 1.2.10
    
    Copyright 2007, 2008 Daniel Zerbino (zerbino@ebi.ac.uk)
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    
    Compilation settings:
    CATEGORIES = 6
    MAXKMERLENGTH = 250
    OPENMP
    LONGSEQUENCES
    BIGASSEMBLY
    
    Usage:
    ./velveth directory hash_length {[-file_format][-read_type][-separate|-interleaved] filename1 [filename2 ...]} {...} [options]
    
    	directory	: directory name for output files
    	hash_length	: EITHER an odd integer (if even, it will be decremented) <= 250 (if above, will be reduced)
    			: OR: m,M,s where m and M are odd integers (if not, they will be decremented) with m < M <= 250 (if above, will be reduced)
    				and s is a step (even number). Velvet will then hash from k=m to k=M with a step of s
    	filename	: path to sequence file or - for standard input
    
    File format options:
    	-fasta	-fastq	-raw	-fasta.gz	-fastq.gz	-raw.gz	-sam	-bam	-fmtAuto
    	(Note: -fmtAuto will detect fasta or fastq, and will try the following programs for decompression : gunzip, pbunzip2, bunzip2
    
    File layout options for paired reads (only for fasta and fastq formats):
    	-interleaved	: File contains paired reads interleaved in the one file (default)
    	-separate	: Read 2 separate files for paired reads
    
    Read type options:
    	-short	-shortPaired
    	...
    	-short5	-shortPaired5
    	-short6	-shortPaired6
    	-long	-longPaired
    	-reference
    
    Options:
    	-strand_specific	: for strand specific transcriptome sequencing data (default: off)
    	-reuse_Sequences	: reuse Sequences file (or link) already in directory (no need to provide original filenames in this case (default: off)
    	-reuse_binary	: reuse binary sequences file (or link) already in directory (no need to provide original filenames in this case (default: off)
    	-noHash			: simply prepare Sequences file, do not hash reads or prepare Roadmaps file (default: off)
    	-create_binary  	: create binary CnyUnifiedSeq file (default: off)
    
    Synopsis:
    
    - Short single end reads:
    	velveth Assem 29 -short -fastq s_1_sequence.txt
    
    - Paired-end short reads (remember to interleave paired reads):
    	velveth Assem 31 -shortPaired -fasta interleaved.fna
    
    - Paired-end short reads (using separate files for the paired reads)
    	velveth Assem 31 -shortPaired -fasta -separate left.fa right.fa
    
    - Two channels and some long reads:
    	velveth Assem 43 -short -fastq unmapped.fna -longPaired -fasta SangerReads.fasta
    
    - Three channels:
    	velveth Assem 35 -shortPaired -fasta pe_lib1.fasta -shortPaired2 pe_lib2.fasta -short3 se_lib1.fa
    
    Output:
    	directory/Roadmaps
    	directory/Sequences
    		[Both files are picked up by graph, so please leave them there]
    
  • Create directory for running Velvet
  • In [41]:
    mkdir Velvet
    
  • Change directory to Velvet directory, create symbolic links of FASTQ files
  • In [47]:
    dirVelvet = "/home/annotest/AssemblyWS/Velvet"
    
    In [48]:
    cd {dirVelvet}
    
    /home/annotest/AssemblyWS/Velvet
    
    In [52]:
    %%bash
    ln -s ../FASTQ/* .
    
    In [53]:
    ls -l
    
    total 0
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:00 cabV2_read1.fq.gz -> ../FASTQ/cabV2_read1.fq.gz
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:00 cabV2_read2.fq.gz -> ../FASTQ/cabV2_read2.fq.gz
    
  • Create shell script to run velvet (Run_Velvet.sh) with Nano / copy Run_Velvet.sh from /home/chumpol/AssemblyWS/Velvet/Run_Velvet.sh
  • In [54]:
    %%bash
    cp /home/chumpol/AssemblyWS/Velvet/Run_Velvet.sh .
    
    In [55]:
    %%bash
    more Run_Velvet.sh
    
    ::::::::::::::
    Run_Velvet.sh
    ::::::::::::::
    #!/bin/bash
    
    # $1 as k-mer
    # $2 input read
    
    velveth Test_${1} $1 -fastq.gz -shortPaired -separate ${2}_read1.fq.gz ${2}_read2.fq.gz
    velvetg Test_${1} -ins_length 300 -exp_cov 10 -cov_cutoff auto -min_contig_lgth 1000
    

    Parameters

    k-mers           : k-mers as first parameter ($1) of the script
    -fastq.gz        : format of read files
    -shortPaired -separate :  read type (Paired-end)
           Filename       : ${2} as second parameter of the script
    -ins_length     : expected distance between two paired-end reads (300) 
    -exp_cov        : expected coverage to infer (10)
          -cov_cutoff      : removal of low coverage nodes (auto)
          -min_contig_lgth : minimum contig length exported to contigs.fa file.
          Output is saved in Test_${1}
    
    
  • Run scripts
  • In [58]:
    %%bash
    ./Run_Velvet.sh 75 cabV2
    
    [0.000000] Reading FastQ file cabV2_read1.fq.gz;
    [0.000291] Reading FastQ file cabV2_read2.fq.gz;
    [5.013386] 925060 sequences found in total in the paired sequence files
    [5.013390] Done
    [5.026487] Reading read set file Test_75/Sequences;
    [5.203390] 925060 sequences found
    [5.976033] Done
    [5.976037] 925060 sequences in total.
    [5.976143] Writing into roadmap file Test_75/Roadmaps...
    [6.359098] Inputting sequences...
    [6.365410] Inputting sequence 0 / 925060
    [8.983243]  === Sequences loaded in 2.624489 s
    [8.985614] Done inputting sequences
    [8.985616] Destroying splay table
    [9.372377] Splay table destroyed
    [0.000000] Reading roadmap file Test_75/Roadmaps
    [1.225080] 925060 roadmaps read
    [1.237108] Creating insertion markers
    [1.393650] Ordering insertion markers
    [1.419950] Counting preNodes
    [1.559739] 1677039 preNodes counted, creating them now
    [6.524007] Adjusting marker info...
    [6.661250] Connecting preNodes
    [7.019085] Cleaning up memory
    [7.020495] Done creating preGraph
    [7.020504] Concatenation...
    [7.563851] Renumbering preNodes
    [7.563894] Initial preNode count 1677039
    [7.622448] Destroyed 1260839 preNodes
    [7.622453] Concatenation over!
    [7.622455] Clipping short tips off preGraph
    [7.739048] Concatenation...
    [7.911339] Renumbering preNodes
    [7.911342] Initial preNode count 416200
    [7.916685] Destroyed 392546 preNodes
    [7.916687] Concatenation over!
    [7.916687] 199487 tips cut off
    [7.916688] 23654 nodes left
    [7.916800] Writing into pregraph file Test_75/PreGraph...
    [8.257118] Reading read set file Test_75/Sequences;
    [8.435761] 925060 sequences found
    [9.232938] Done
    [9.638351] Reading pre-graph file Test_75/PreGraph
    [9.638415] Graph has 23654 nodes and 925060 sequences
    [9.802831] Scanning pre-graph file Test_75/PreGraph for k-mers
    [9.957928] 5166917 kmers found
    [10.568908] Sorting kmer occurence table ... 
    [15.315342] Sorting done.
    [15.315346] Computing acceleration table... 
    [15.466536] Computing offsets... 
    [15.604930] Ghost Threading through reads 0 / 925060
    [16.031517]  === Ghost-Threaded in 0.441526 s
    [16.031861] Threading through reads 0 / 925060
    [17.042687]  === Threaded in 1.011161 s
    [17.113997] Correcting graph with cutoff 0.200000
    [17.117678] Determining eligible starting points
    [17.146119] Done listing starting nodes
    [17.146121] Initializing todo lists
    [17.149003] Done with initilization
    [17.149005] Activating arc lookup table
    [17.152900] Done activating arc lookup table
    [17.553726] 10000 / 23654 nodes visited
    [17.930653] 20000 / 23654 nodes visited
    [18.017725] Concatenation...
    [18.018440] Renumbering nodes
    [18.018441] Initial node count 23654
    [18.018827] Removed 19478 null nodes
    [18.018832] Concatenation over!
    [18.018833] Clipping short tips off graph, drastic
    [18.019700] Concatenation...
    [18.043709] Renumbering nodes
    [18.043710] Initial node count 4176
    [18.043861] Removed 1023 null nodes
    [18.043862] Concatenation over!
    [18.043862] 3153 nodes left
    [18.043953] Writing into graph file Test_75/Graph2...
    [18.666390] Measuring median coverage depth...
    [18.667539] Median coverage depth = 10.295438
    [18.667582] Removing contigs with coverage < 5.147719...
    [18.669440] Concatenation...
    [18.714441] Renumbering nodes
    [18.714442] Initial node count 3153
    [18.714514] Removed 2090 null nodes
    [18.714515] Concatenation over!
    [18.714555] Concatenation...
    [18.714631] Renumbering nodes
    [18.714631] Initial node count 1063
    [18.714633] Removed 0 null nodes
    [18.714633] Concatenation over!
    [18.714640] Clipping short tips off graph, drastic
    [18.714741] Concatenation...
    [18.715255] Renumbering nodes
    [18.715256] Initial node count 1063
    [18.715295] Removed 37 null nodes
    [18.715296] Concatenation over!
    [18.715296] 1026 nodes left
    [18.715297] Read coherency...
    [18.715305] Identifying unique nodes
    [18.715334] Done, 791 unique nodes counted
    [18.715335] Trimming read tips
    [18.715424] Renumbering nodes
    [18.715424] Initial node count 1026
    [18.715426] Removed 0 null nodes
    [18.715426] Confronted to 0 multiple hits and 0 null over 0
    [18.715427] Read coherency over!
    [18.722075] Starting pebble resolution...
    [18.732289] Computing read to node mapping array sizes
    [18.757604] Computing read to node mappings
    [18.768573] Estimating library insert lengths...
    [18.774250] Done
    [18.774260] Computing direct node to node mappings
    [18.788234] Scaffolding node 0
    [18.798856]  === Nodes Scaffolded in 0.024595 s
    [18.809034] Preparing to correct graph with cutoff 0.200000
    [18.920196] Cleaning memory
    [18.920267] Deactivating local correction settings
    [18.920313] Pebble done.
    [18.920314] Starting pebble resolution...
    [18.929721] Computing read to node mapping array sizes
    [18.949847] Computing read to node mappings
    [18.962627] Estimating library insert lengths...
    [18.972112] Done
    [18.972119] Computing direct node to node mappings
    [18.993819] Scaffolding node 0
    [19.005947]  === Nodes Scaffolded in 0.033822 s
    [19.014262] Preparing to correct graph with cutoff 0.200000
    [19.020280] Cleaning memory
    [19.020284] Deactivating local correction settings
    [19.020312] Pebble done.
    [19.020313] Concatenation...
    [19.029035] Renumbering nodes
    [19.029037] Initial node count 1026
    [19.029114] Removed 631 null nodes
    [19.029123] Concatenation over!
    [19.029124] Removing reference contigs with coverage < 5.147719...
    [19.029158] Concatenation...
    [19.029170] Renumbering nodes
    [19.029171] Initial node count 395
    [19.029172] Removed 0 null nodes
    [19.029178] Concatenation over!
    [19.034808] Writing contigs into Test_75/contigs.fa...
    [19.691495] Writing into stats file Test_75/stats.txt...
    [19.696405] Writing into graph file Test_75/LastGraph...
    [20.341936] Estimated Coverage cutoff = 5.147719
    Final graph has 395 nodes and n50 of 55255, max 171853, total 4594714, using 860030/925060 reads
    

    The final contigs.fa is saved in Test_75 directory.

  • Try with another k-mers, such as 71, 81.

  • VelvetOptimiser

    Multi-threaded Perl script for automatically optimizing the three primary parameter options (K, -exp_cov, -cov_cutoff) for the Velvet assembler.

    • Create directory for running VelvetOptimiser
    In [59]:
    cd ..
    
    /home/annotest/AssemblyWS
    
    In [60]:
    pwd
    
    Out[60]:
    '/home/annotest/AssemblyWS'
    In [61]:
    mkdir VelvetOptimiser
    
  • Change directory to working directory, create symbolic links of FASTQ files.
  • In [62]:
    cd VelvetOptimiser
    
    /home/annotest/AssemblyWS/VelvetOptimiser
    
    In [63]:
    %%bash
    ln -s ../FASTQ/* .
    
    In [64]:
    ls -l
    
    total 0
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:06 cabV2_read1.fq.gz -> ../FASTQ/cabV2_read1.fq.gz
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:06 cabV2_read2.fq.gz -> ../FASTQ/cabV2_read2.fq.gz
    
  • Create shell script to run VelvetOptimiser (Run_VelvetOptimiser.sh) with Nano / copy Run_VelvetOptimiser.sh from
  • /home/chumpol/AssemblyWS/VelvetOptimiser/Run_VelvetOptimiser.sh

    In [65]:
    cp /home/chumpol/AssemblyWS/VelvetOptimiser/Run_VelvetOptimiser.sh .
    
    In [66]:
    cat Run_VelvetOptimiser.sh
    
    #!/bin/env bash
    
    
    # $1 is number of threads
    # $2 is start k-mers
    # $3 is stop k-mers
    # $4 is read name
    
    # Start from $1 to $2, step 5
    /share/apps/VelvetOptimiser/VelvetOptimiser.pl -t $1 -s $2 -e $3 -x 5 -f "-shortPaired -separate -fastq.gz ${4}_read1.fq.gz ${4}_read2.fq.gz" -o "-ins_length 300 -exp_cov 10 -cov_cutoff auto -min_contig_lgth 1000"
    

    Parameters

     -t #        : number of CPU threads to use
     -s #        : start k-mers
     -e #        : stop k-mers
     -x #        : incremental steps of k-mers
     -f “string” : velveth parameters
     -o “string” : velvetg parameters
    
    
  • Run the scripts
  • In [67]:
    %%bash
    ./Run_VelvetOptimiser.sh 16 85 91 cabV2
    
    Logfile name: 07-08-2018-16-09-58_Logfile.txt
    
    ****************************************************
               VelvetOptimiser.pl Version 2.3.0-alpha
    ****************************************************
    Number of CPUs available: 144
    Current free RAM: 996.047GB
    Velvet OMP compiler setting: 1
    Aug  7 16:09:58 Starting to check input parameters.
    	Old hash step value 5
    	Hash search step value was odd, substracting one.  New hash step value = 4
    	Velveth parameter string OK.
    Aug  7 16:09:58 Finished checking input parameters.
    Velvet details:
    	Velvet version: 1.2.10
    	Compiled categories: 6
    	Compiled max kmer length: 250
    	Maximum number of Velvet instances to run: 16
    Will run velvet optimiser with the following paramters:
    	Velveth parameter string:
    		-shortPaired -separate -fastq.gz cabV2_read1.fq.gz cabV2_read2.fq.gz
    	Velveth start hash values:	85
    	Velveth end hash value:		91
    	Velveth hash step value:	4
    	Velvetg minimum coverage cutoff to use:	0
    
    	Read tracking for final assembly off.
    Aug  7 16:09:58 Beginning velveth runs.
    Aug  7 16:09:58		Running velveth with hash value: 85.
    Aug  7 16:10:00		Running velveth with hash value: 89.
    Aug  7 16:10:03		Running velveth with hash value: 91.
    Aug  7 16:10:09		Velveth with hash value 85 finished.
    Aug  7 16:10:10		Velveth with hash value 89 finished.
    Aug  7 16:10:13		Velveth with hash value 91 finished.
    Aug  7 16:10:13 Finished velveth runs.
    Aug  7 16:10:13 Beginning vanilla velvetg runs.
    Aug  7 16:10:13		Running vanilla velvetg on hash value: 85
    Aug  7 16:10:15		Running vanilla velvetg on hash value: 89
    Aug  7 16:10:18		Running vanilla velvetg on hash value: 91
    Aug  7 16:10:35		Velvetg on hash value: 85 finished.
    Aug  7 16:10:36		Velvetg on hash value: 89 finished.
    Aug  7 16:10:37		Velvetg on hash value: 91 finished.
    Aug  7 16:10:37 Hash value of best assembly by assembly score: 91
    Aug  7 16:10:37 Optimisation routine chosen for best assembly: shortPaired
    Aug  7 16:10:37 Looking for the expected coverage
    Aug  7 16:10:39		Expected coverage set to 7
    Aug  7 16:10:39 Setting assembly short insert length(s) to auto
    Aug  7 16:10:39 Beginning coverage cutoff optimisation
    Aug  7 16:10:40		Setting cov_cutoff to 3.461.
    Aug  7 16:10:44		Setting cov_cutoff to 2.139.
    		Looking for best cutoff score between 0.000 and 5.600
    		Max cutoff lies between 0.000 & 3.461
    		fc = 4615188	fd = 4615398	abs diff = 210
    Aug  7 16:10:47		Setting cov_cutoff to 1.322.
    		Max cutoff lies between 0.000 & 2.139
    		fc = 4615398	fd = 4615500	abs diff = 102
    Aug  7 16:10:51		Setting cov_cutoff to 0.817.
    		Max cutoff lies between 0.000 & 1.322
    		fc = 4615500	fd = 4615500	abs diff = 0
    Aug  7 16:10:54		Setting cov_cutoff to 0.505.
    		Max cutoff lies between 0.505 & 1.322
    		fc = 4615500	fd = 4615399	abs diff = 101
    Aug  7 16:10:58		Setting cov_cutoff to 1.010.
    		Optimum value of cutoff is 1.32
    		Took 5 iterations
    Aug  7 16:11:02
    
    
    Final optimised assembly details:
    ********************************************************
    Assembly id: 3
    Assembly score: 4615405
    Velveth timestamp: Aug  7 2018 16:10:13
    Velvetg timestamp: Aug  7 2018 16:11:02
    Velveth version: 1.2.10
    Velvetg version: 1.2.10
    Readfile(s): -shortPaired -separate -fastq.gz cabV2_read1.fq.gz cabV2_read2.fq.gz
    Velveth parameter string: auto_data_91 91 -shortPaired -separate -fastq.gz cabV2_read1.fq.gz cabV2_read2.fq.gz
    Velvetg parameter string: auto_data_91 -ins_length 300 -exp_cov 7 -cov_cutoff auto -min_contig_lgth 1000 -clean yes
    Assembly directory: /home/annotest/AssemblyWS/VelvetOptimiser/auto_data_91
    Velvet hash value: 91
    Roadmap file size: 40716059
    Total number of contigs: 345
    n50: 22892
    length of longest contig: 112538
    Total bases in contigs: 4615405
    Number of contigs > 1k: 345
    Total bases in contigs > 1k: 4615405
    Paired Library insert stats:
    **********************************************************
    
    
    Assembly output files are in the following directory:
    /home/annotest/AssemblyWS/VelvetOptimiser/auto_data_91
    
    
    • Use 16 CPU cores
    • Vary k-mers from 75 - 91

    SPAdes assembler

    • Create directory for running SPAdes
    In [91]:
    cd ..
    
    /home/annotest/AssemblyWS
    
    In [71]:
    mkdir SPAdes
    
  • Change directory to working directory, create symbolic links of FASTQ files.
  • In [72]:
    cd SPAdes
    
    /home/annotest/AssemblyWS/SPAdes
    
    In [73]:
    %%bash
    ln -s ../FASTQ/* .
    
    In [74]:
    ls -l
    
    total 0
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:14 cabV2_read1.fq.gz -> ../FASTQ/cabV2_read1.fq.gz
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:14 cabV2_read2.fq.gz -> ../FASTQ/cabV2_read2.fq.gz
    
  • Create shell script to run SPAdes (Run_SPAdes.sh) with Nano / copy Run_SPAdes.sh from
  • /home/chumpol/AssemblyWS/SPAdes/Run_SPAdes.sh

    In [75]:
    cp /home/chumpol/AssemblyWS/SPAdes/Run_SPAdes.sh .
    
    In [76]:
    cat Run_SPAdes.sh
    
    #!/bin/bash
    
    # $1 as number of threads
    # $2 as input file
    # $3 as output directory
    
    /share/apps/SPAdes-3.12.0-Linux/bin/spades.py -t $1 -1 ${2}_read1.fq.gz -2 ${2}_read2.fq.gz --only-assembler --cov-cutoff auto --careful -o $3
    

    Parameters

    -t #             : number of CPU threads to use
    -1 file1         : paired read1 file
    -2 file2         : paired read2 file
    --only-assembler : runs only assembling (without read error correction)
    --careful        : tries to reduce number of mismatches and short indels
    -o output        : output directory
    
    
  • Run the script
  • In [77]:
    %%bash
    ./Run_SPAdes.sh 16 cabV2 SPAdes_Out
    
    Command line: /share/apps/SPAdes-3.12.0-Linux/bin/spades.py	-t	16	-1	/home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz	-2	/home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz	--only-assembler	--cov-cutoff	auto	--careful	-o	/home/annotest/AssemblyWS/SPAdes/SPAdes_Out	
    
    System information:
      SPAdes version: 3.12.0
      Python version: 3.5.5
      OS: Linux-3.10.0-514.26.2.el7.x86_64-x86_64-with-centos-7.4.1708-Core
    
    Output dir: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out
    Mode: ONLY assembling (without read error correction)
    Debug mode is turned OFF
    
    Dataset parameters:
      Multi-cell mode (you should set '--sc' flag if input data was obtained with MDA (single-cell) technology or --meta flag if processing metagenomic dataset)
      Reads:
        Library number: 1, library type: paired-end
          orientation: fr
          left reads: ['/home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz']
          right reads: ['/home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz']
          interlaced reads: not specified
          single reads: not specified
          merged reads: not specified
    Assembly parameters:
      k: automatic selection based on read length
      Repeat resolution is enabled
      Mismatch careful mode is turned ON
      MismatchCorrector will be used
      Coverage cutoff is turned ON and threshold will be auto-detected
    Other parameters:
      Dir for temp files: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/tmp
      Threads: 16
      Memory limit (in Gb): 250
    
    
    ======= SPAdes pipeline started. Log can be found here: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/spades.log
    
    
    ===== Assembling started.
    
    
    == Running assembler: K21
    
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K21/configs/config.info
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K21/configs/careful_mode.info
      0:00:00.001     4M / 4M    INFO    General                 (memory_limit.cpp          :  49)   Memory limit set to 250 Gb
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  87)   Starting SPAdes, built from N/A, git revision N/A
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  88)   Maximum k-mer length: 128
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  89)   Assembling dataset (/home/annotest/AssemblyWS/SPAdes/SPAdes_Out/dataset.info) with K=21
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  90)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  51)   SPAdes started
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  58)   Starting from stage: construction
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  65)   Two-step RR enabled: 0
      0:00:00.001     4M / 4M    INFO   StageManager             (stage.cpp                 : 132)   STAGE == de Bruijn graph construction
      0:00:00.001     4M / 4M    INFO    General                 (read_converter.hpp        :  77)   Converting reads to binary format for library #0 (takes a while)
      0:00:00.001     4M / 4M    INFO    General                 (read_converter.hpp        :  78)   Converting paired reads
      0:00:00.311    80M / 80M   INFO    General                 (binary_converter.hpp      :  93)   16384 reads processed
      0:00:00.557    96M / 96M   INFO    General                 (binary_converter.hpp      :  93)   32768 reads processed
      0:00:01.046   124M / 124M  INFO    General                 (binary_converter.hpp      :  93)   65536 reads processed
      0:00:02.009   180M / 180M  INFO    General                 (binary_converter.hpp      :  93)   131072 reads processed
      0:00:03.491   296M / 296M  INFO    General                 (binary_converter.hpp      :  93)   262144 reads processed
      0:00:07.294   468M / 468M  INFO    General                 (binary_converter.hpp      : 117)   462530 reads written
      0:00:07.844     4M / 468M  INFO    General                 (read_converter.hpp        :  87)   Converting single reads
      0:00:07.937   132M / 468M  INFO    General                 (binary_converter.hpp      : 117)   0 reads written
      0:00:07.937     4M / 468M  INFO    General                 (read_converter.hpp        :  95)   Converting merged reads
      0:00:08.025   132M / 468M  INFO    General                 (binary_converter.hpp      : 117)   0 reads written
      0:00:08.027     4M / 468M  INFO    General                 (construction.cpp          : 111)   Max read length 151
      0:00:08.027     4M / 468M  INFO    General                 (construction.cpp          : 117)   Average read length 151
      0:00:08.027     4M / 468M  INFO    General                 (stage.cpp                 : 101)   PROCEDURE == k+1-mer counting
      0:00:08.027     4M / 468M  INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:08.027     4M / 468M  INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:08.027     4M / 468M  INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20825 Gb
      0:00:08.027     4M / 468M  INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 262144
      0:00:12.163     8G / 8G    INFO    General                 (kmer_splitters.hpp        : 289)   Processed 1850120 reads
      0:00:12.163     8G / 8G    INFO    General                 (kmer_splitters.hpp        : 295)   Adding contigs from previous K
      0:00:12.853    64M / 8G    INFO    General                 (kmer_splitters.hpp        : 308)   Used 1850120 reads
      0:00:12.853    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:13.006    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 18798949 kmers in total.
      0:00:13.007    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:13.225    64M / 8G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Extension index construction
      0:00:13.225    64M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:13.225    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:13.225    64M / 8G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:13.225    64M / 8G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20703 Gb
      0:00:13.225    64M / 8G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 262144
      0:00:16.612     8G / 8G    INFO    General                 (kmer_splitters.hpp        : 380)   Processed 18798949 kmers
      0:00:16.612     8G / 8G    INFO    General                 (kmer_splitters.hpp        : 385)   Used 18798949 kmers.
      0:00:17.289    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:17.435    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 18304331 kmers in total.
      0:00:17.435    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:17.613    64M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:18.206    64M / 8G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:18.388    64M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 8496152 bytes occupied (3.71329 bits per kmer).
      0:00:18.402    84M / 8G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build:  99)   Building k-mer extensions from k+1-mers
      0:00:19.421    84M / 8G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build: 103)   Building k-mer extensions from k+1-mers finished.
      0:00:19.421    84M / 8G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Early tip clipping
      0:00:19.421    84M / 8G    INFO    General                 (construction.cpp          : 253)   Early tip clipper length bound set as (RL - K)
      0:00:19.421    84M / 8G    INFO   Early tip clipping       (early_simplification.hpp  : 181)   Early tip clipping
      0:00:21.321    84M / 8G    INFO   Early tip clipping       (early_simplification.hpp  : 184)   3269566 22-mers were removed by early tip clipper
      0:00:21.321    84M / 8G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Condensing graph
      0:00:21.322    84M / 8G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 355)   Extracting unbranching paths
      0:00:22.161   128M / 8G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 374)   Extracting unbranching paths finished. 1390562 sequences extracted
      0:00:22.689   128M / 8G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 310)   Collecting perfect loops
      0:00:22.898   132M / 8G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 343)   Collecting perfect loops finished. 0 loops collected
      0:00:23.321   448M / 8G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Filling coverage indices (PHM)
      0:00:23.321   448M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:23.321   448M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:23.720   456M / 8G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 8725488 bytes occupied (3.71318 bits per kmer).
      0:00:23.747   528M / 8G    INFO    General                 (construction.cpp          : 388)   Collecting k-mer coverage information from reads, this takes a while.
      0:00:25.616   528M / 8G    INFO    General                 (construction.cpp          : 508)   Filling coverage and flanking coverage from PHM
      0:00:26.337   528M / 8G    INFO    General                 (construction.cpp          : 464)   Processed 2781021 edges
      0:00:26.423   420M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == EC Threshold Finding
      0:00:26.424   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 181)   Kmer coverage valley at: 2
      0:00:26.424   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 201)   K-mer histogram maximum: 21
      0:00:26.424   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 237)   Estimated median coverage: 23. Coverage mad: 7.413
      0:00:26.424   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 259)   Fitting coverage model
      0:00:26.467   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 2
      0:00:26.589   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 4
      0:00:27.025   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 8
      0:00:27.959   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 16
      0:00:28.568   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 309)   Fitted mean coverage: 22.4523. Fitted coverage std. dev: 5.4301
      0:00:28.568   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 334)   Probability of erroneous kmer at valley: 0.872896
      0:00:28.568   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 358)   Preliminary threshold calculated as: 5
      0:00:28.568   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 362)   Threshold adjusted to: 5
      0:00:28.568   420M / 8G    INFO    General                 (kmer_coverage_model.cpp   : 375)   Estimated genome size (ignoring repeats): 4603800
      0:00:28.568   420M / 8G    INFO    General                 (genomic_info_filler.cpp   : 112)   Mean coverage was calculated as 22.4523
      0:00:28.568   420M / 8G    INFO    General                 (genomic_info_filler.cpp   : 127)   EC coverage threshold value was calculated as 5
      0:00:28.569   420M / 8G    INFO    General                 (genomic_info_filler.cpp   : 128)   Trusted kmer low bound: 1
      0:00:28.569   420M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Raw Simplification
      0:00:28.569   420M / 8G    INFO    General                 (simplification.cpp        : 128)   PROCEDURE == InitialCleaning
      0:00:28.569   420M / 8G    INFO    General                 (graph_simplification.hpp  : 662)   Flanking coverage based disconnection disabled
      0:00:28.569   420M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Self conjugate edge remover
      0:00:28.666   420M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Self conjugate edge remover triggered 0 times
      0:00:28.666   420M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification
      0:00:28.666   420M / 8G    INFO    General                 (simplification.cpp        : 357)   Graph simplification started
      0:00:28.666   420M / 8G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:28.667   420M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 1
      0:00:28.667   420M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:28.831   404M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 466 times
      0:00:28.831   404M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:58.961   420M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 460110 times
      0:00:58.961   420M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:58.987   428M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:58.987   428M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 2
      0:00:58.987   428M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:59.041   392M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 175 times
      0:00:59.041   392M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:59.041   392M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:59.041   392M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:59.529   340M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 16646 times
      0:00:59.529   340M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 3
      0:00:59.529   340M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:59.542   340M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 143 times
      0:00:59.542   340M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.172   316M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 3842 times
      0:01:00.172   316M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.208   308M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 1014 times
      0:01:00.208   308M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 4
      0:01:00.208   308M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.212   308M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.212   308M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.288   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 129 times
      0:01:00.288   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.303   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 516 times
      0:01:00.303   304M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 5
      0:01:00.303   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.304   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 1 times
      0:01:00.304   304M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.335   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 80 times
      0:01:00.335   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.338   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 62 times
      0:01:00.338   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 6
      0:01:00.338   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.338   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.338   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.345   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 15 times
      0:01:00.345   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.346   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 54 times
      0:01:00.346   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 7
      0:01:00.346   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.346   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.346   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.350   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 8 times
      0:01:00.350   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 18 times
      0:01:00.352   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 8
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 3 times
      0:01:00.352   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.353   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 26 times
      0:01:00.353   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 9
      0:01:00.353   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.353   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.353   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 2 times
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 11 times
      0:01:00.354   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 10
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:00.354   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.355   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 19 times
      0:01:00.355   300M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 11
      0:01:00.355   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.359   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.359   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.459   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 110 times
      0:01:00.459   300M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:01:00.464   296M / 8G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 12
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:01:00.464   296M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification Cleanup
      0:01:00.464   296M / 8G    INFO    General                 (simplification.cpp        : 196)   PROCEDURE == Post simplification
      0:01:00.464   296M / 8G    INFO    General                 (graph_simplification.hpp  : 453)   Disconnection of relatively low covered edges disabled
      0:01:00.464   296M / 8G    INFO    General                 (graph_simplification.hpp  : 489)   Complex tip clipping disabled
      0:01:00.464   296M / 8G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:01:00.464   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.468   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.468   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.547   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 9 times
      0:01:00.547   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.550   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.550   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.624   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:01:00.624   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:00.624   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:00.624   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:00.624   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:00.624   296M / 8G    INFO    General                 (simplification.cpp        : 330)   Disrupting self-conjugate edges
      0:01:00.646   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Removing isolated edges
      0:01:00.648   296M / 8G    INFO   Simplification           (parallel_processing.hpp   : 167)   Removing isolated edges triggered 0 times
      0:01:00.648   296M / 8G    INFO    General                 (simplification.cpp        : 340)   Removing all the edges having coverage 1 and less
      0:01:00.651   296M / 8G    INFO    General                 (simplification.cpp        : 470)   Counting average coverage
      0:01:00.659   296M / 8G    INFO    General                 (simplification.cpp        : 476)   Average coverage = 25.6143
      0:01:00.659   296M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:00.659   296M / 8G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/assembly_graph_with_scaffolds.gfa
      0:01:00.772   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/before_rr.fasta
      0:01:00.902   296M / 8G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/assembly_graph.fastg
      0:01:01.376   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/simplified_contigs.fasta
      0:01:01.511   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/final_contigs.fasta
      0:01:01.645   296M / 8G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:01.645   296M / 8G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/assembly_graph_with_scaffolds.gfa
      0:01:01.762   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/before_rr.fasta
      0:01:01.893   296M / 8G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/assembly_graph.fastg
      0:01:02.369   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/simplified_contigs.fasta
      0:01:02.508   296M / 8G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K21/final_contigs.fasta
      0:01:02.655   296M / 8G    INFO    General                 (launch.hpp                : 149)   SPAdes finished
      0:01:02.951    64M / 8G    INFO    General                 (main.cpp                  : 109)   Assembling time: 0 hours 1 minutes 2 seconds
    Max read length detected as 151
    Default k-mer sizes were set to [21, 33, 55, 77] because estimated read length (151) is equal to or greater than 150
    
    == Running assembler: K33
    
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K33/configs/config.info
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K33/configs/careful_mode.info
      0:00:00.001     4M / 4M    INFO    General                 (memory_limit.cpp          :  49)   Memory limit set to 250 Gb
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  87)   Starting SPAdes, built from N/A, git revision N/A
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  88)   Maximum k-mer length: 128
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  89)   Assembling dataset (/home/annotest/AssemblyWS/SPAdes/SPAdes_Out/dataset.info) with K=33
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  90)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  51)   SPAdes started
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  58)   Starting from stage: construction
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  65)   Two-step RR enabled: 0
      0:00:00.001     4M / 4M    INFO   StageManager             (stage.cpp                 : 132)   STAGE == de Bruijn graph construction
      0:00:00.001     4M / 4M    INFO    General                 (read_converter.hpp        :  59)   Binary reads detected
      0:00:00.002     4M / 4M    INFO    General                 (construction.cpp          : 111)   Max read length 151
      0:00:00.002     4M / 4M    INFO    General                 (construction.cpp          : 117)   Average read length 151
      0:00:00.002     4M / 4M    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == k+1-mer counting
      0:00:00.002     4M / 4M    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:00.002     4M / 4M    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20825 Gb
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:00:04.181     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 289)   Processed 1850120 reads
      0:00:04.181     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 295)   Adding contigs from previous K
      0:00:06.101    64M / 9G    INFO    General                 (kmer_splitters.hpp        : 308)   Used 1850120 reads
      0:00:06.101    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:06.407    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 23619460 kmers in total.
      0:00:06.408    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:06.840    64M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Extension index construction
      0:00:06.840    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:06.840    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:06.840    64M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:06.840    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20703 Gb
      0:00:06.840    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:00:10.574     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 380)   Processed 23619460 kmers
      0:00:10.574     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 385)   Used 23619460 kmers.
      0:00:11.367    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:11.580    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 23286214 kmers in total.
      0:00:11.580    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:12.048    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:12.916    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:13.381    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 10806120 bytes occupied (3.71245 bits per kmer).
      0:00:13.397    88M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build:  99)   Building k-mer extensions from k+1-mers
      0:00:14.675    88M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build: 103)   Building k-mer extensions from k+1-mers finished.
      0:00:14.675    88M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Early tip clipping
      0:00:14.676    88M / 9G    INFO    General                 (construction.cpp          : 253)   Early tip clipper length bound set as (RL - K)
      0:00:14.676    88M / 9G    INFO   Early tip clipping       (early_simplification.hpp  : 181)   Early tip clipping
      0:00:16.978    88M / 9G    INFO   Early tip clipping       (early_simplification.hpp  : 184)   7137863 34-mers were removed by early tip clipper
      0:00:16.979    88M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Condensing graph
      0:00:16.980    88M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 355)   Extracting unbranching paths
      0:00:18.027   124M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 374)   Extracting unbranching paths finished. 962429 sequences extracted
      0:00:18.593   124M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 310)   Collecting perfect loops
      0:00:18.893   124M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 343)   Collecting perfect loops finished. 0 loops collected
      0:00:19.292   348M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Filling coverage indices (PHM)
      0:00:19.293   348M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:19.293   348M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:19.799   372M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 10960640 bytes occupied (3.71241 bits per kmer).
      0:00:19.842   464M / 9G    INFO    General                 (construction.cpp          : 388)   Collecting k-mer coverage information from reads, this takes a while.
      0:00:21.816   464M / 9G    INFO    General                 (construction.cpp          : 508)   Filling coverage and flanking coverage from PHM
      0:00:22.648   464M / 9G    INFO    General                 (construction.cpp          : 464)   Processed 1924843 edges
      0:00:22.774   312M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == EC Threshold Finding
      0:00:22.774   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 181)   Kmer coverage valley at: 0
      0:00:22.774   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 201)   K-mer histogram maximum: 18
      0:00:22.774   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 237)   Estimated median coverage: 19. Coverage mad: 7.413
      0:00:22.774   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 259)   Fitting coverage model
      0:00:22.799   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 2
      0:00:22.869   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 4
      0:00:23.131   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 8
      0:00:23.776   312M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 16
      0:00:24.508   308M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 309)   Fitted mean coverage: 18.8784. Fitted coverage std. dev: 5.07148
      0:00:24.509   308M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 334)   Probability of erroneous kmer at valley: 0.999913
      0:00:24.509   308M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 358)   Preliminary threshold calculated as: 4
      0:00:24.509   308M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 362)   Threshold adjusted to: 4
      0:00:24.509   308M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 375)   Estimated genome size (ignoring repeats): 4707199
      0:00:24.509   308M / 9G    INFO    General                 (genomic_info_filler.cpp   : 112)   Mean coverage was calculated as 18.8784
      0:00:24.509   308M / 9G    INFO    General                 (genomic_info_filler.cpp   : 127)   EC coverage threshold value was calculated as 4
      0:00:24.509   308M / 9G    INFO    General                 (genomic_info_filler.cpp   : 128)   Trusted kmer low bound: 0
      0:00:24.509   308M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Raw Simplification
      0:00:24.509   308M / 9G    INFO    General                 (simplification.cpp        : 128)   PROCEDURE == InitialCleaning
      0:00:24.509   308M / 9G    INFO    General                 (graph_simplification.hpp  : 662)   Flanking coverage based disconnection disabled
      0:00:24.509   308M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Self conjugate edge remover
      0:00:24.586   308M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Self conjugate edge remover triggered 0 times
      0:00:24.586   308M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification
      0:00:24.586   308M / 9G    INFO    General                 (simplification.cpp        : 357)   Graph simplification started
      0:00:24.586   308M / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:24.586   308M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 1
      0:00:24.586   308M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:24.729   296M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 915 times
      0:00:24.729   296M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:45.998   268M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 322286 times
      0:00:45.998   268M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.005   268M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 5 times
      0:00:46.005   268M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 2
      0:00:46.005   268M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.038   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 352 times
      0:00:46.038   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 3 times
      0:00:46.039   244M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 3
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.039   244M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.173   224M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 4132 times
      0:00:46.173   224M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 4
      0:00:46.173   224M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.175   224M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 86 times
      0:00:46.175   224M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.257   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 701 times
      0:00:46.257   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.258   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 64 times
      0:00:46.258   216M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 5
      0:00:46.258   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.258   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.258   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.260   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 7 times
      0:00:46.260   216M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.262   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 68 times
      0:00:46.262   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 6
      0:00:46.262   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.262   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.262   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 22 times
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 8 times
      0:00:46.266   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 7
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 3 times
      0:00:46.266   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 8
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.266   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 9 times
      0:00:46.267   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 9
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 5 times
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:46.267   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 10
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.267   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.268   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 9 times
      0:00:46.268   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 11
      0:00:46.268   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.270   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.270   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.313   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 25 times
      0:00:46.313   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:46.318   212M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 12
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.318   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:46.319   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:46.319   212M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification Cleanup
      0:00:46.319   212M / 9G    INFO    General                 (simplification.cpp        : 196)   PROCEDURE == Post simplification
      0:00:46.319   212M / 9G    INFO    General                 (graph_simplification.hpp  : 453)   Disconnection of relatively low covered edges disabled
      0:00:46.319   212M / 9G    INFO    General                 (graph_simplification.hpp  : 489)   Complex tip clipping disabled
      0:00:46.319   212M / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:46.319   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.321   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.321   212M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.353   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:46.353   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:46.355   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:46.355   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:46.386   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:46.386   204M / 9G    INFO    General                 (simplification.cpp        : 330)   Disrupting self-conjugate edges
      0:00:46.396   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Removing isolated edges
      0:00:46.398   204M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Removing isolated edges triggered 11 times
      0:00:46.398   204M / 9G    INFO    General                 (simplification.cpp        : 470)   Counting average coverage
      0:00:46.402   204M / 9G    INFO    General                 (simplification.cpp        : 476)   Average coverage = 21.7425
      0:00:46.402   204M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:00:46.402   204M / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/assembly_graph_with_scaffolds.gfa
      0:00:46.483   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/before_rr.fasta
      0:00:46.579   204M / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/assembly_graph.fastg
      0:00:46.910   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/simplified_contigs.fasta
      0:00:47.002   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/final_contigs.fasta
      0:00:47.097   204M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:00:47.097   204M / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/assembly_graph_with_scaffolds.gfa
      0:00:47.175   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/before_rr.fasta
      0:00:47.272   204M / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/assembly_graph.fastg
      0:00:47.608   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/simplified_contigs.fasta
      0:00:47.704   204M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K33/final_contigs.fasta
      0:00:47.807   204M / 9G    INFO    General                 (launch.hpp                : 149)   SPAdes finished
      0:00:47.955    68M / 9G    INFO    General                 (main.cpp                  : 109)   Assembling time: 0 hours 0 minutes 47 seconds
    
    == Running assembler: K55
    
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K55/configs/config.info
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K55/configs/careful_mode.info
      0:00:00.001     4M / 4M    INFO    General                 (memory_limit.cpp          :  49)   Memory limit set to 250 Gb
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  87)   Starting SPAdes, built from N/A, git revision N/A
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  88)   Maximum k-mer length: 128
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  89)   Assembling dataset (/home/annotest/AssemblyWS/SPAdes/SPAdes_Out/dataset.info) with K=55
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  90)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  51)   SPAdes started
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  58)   Starting from stage: construction
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  65)   Two-step RR enabled: 0
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  76)   Will need read mapping, kmer mapper will be attached
      0:00:00.001     4M / 4M    INFO   StageManager             (stage.cpp                 : 132)   STAGE == de Bruijn graph construction
      0:00:00.001     4M / 4M    INFO    General                 (read_converter.hpp        :  59)   Binary reads detected
      0:00:00.001     4M / 4M    INFO    General                 (construction.cpp          : 111)   Max read length 151
      0:00:00.001     4M / 4M    INFO    General                 (construction.cpp          : 117)   Average read length 151
      0:00:00.001     4M / 4M    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == k+1-mer counting
      0:00:00.002     4M / 4M    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:00.002     4M / 4M    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20825 Gb
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:00:04.658     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 289)   Processed 1850120 reads
      0:00:04.658     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 295)   Adding contigs from previous K
      0:00:06.935    64M / 9G    INFO    General                 (kmer_splitters.hpp        : 308)   Used 1850120 reads
      0:00:06.935    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:07.293    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28314268 kmers in total.
      0:00:07.293    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:07.877    64M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Extension index construction
      0:00:07.877    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:07.877    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:07.877    64M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:07.877    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20703 Gb
      0:00:07.877    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:00:12.066     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 380)   Processed 28314268 kmers
      0:00:12.066     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 385)   Used 28314268 kmers.
      0:00:12.876    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:13.131    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28202227 kmers in total.
      0:00:13.131    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:13.652    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:14.854    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:15.411    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13085528 bytes occupied (3.71191 bits per kmer).
      0:00:15.432    92M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build:  99)   Building k-mer extensions from k+1-mers
      0:00:16.895    92M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build: 103)   Building k-mer extensions from k+1-mers finished.
      0:00:16.896    92M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Condensing graph
      0:00:16.897    92M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 355)   Extracting unbranching paths
      0:00:18.486   188M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 374)   Extracting unbranching paths finished. 1389218 sequences extracted
      0:00:19.394   188M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 310)   Collecting perfect loops
      0:00:19.745   188M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 343)   Collecting perfect loops finished. 0 loops collected
      0:00:20.336   516M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Filling coverage indices (PHM)
      0:00:20.336   516M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:20.336   516M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:20.903   524M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13137352 bytes occupied (3.71187 bits per kmer).
      0:00:20.970   636M / 9G    INFO    General                 (construction.cpp          : 388)   Collecting k-mer coverage information from reads, this takes a while.
      0:00:22.758   636M / 9G    INFO    General                 (construction.cpp          : 508)   Filling coverage and flanking coverage from PHM
      0:00:24.249   636M / 9G    INFO    General                 (construction.cpp          : 464)   Processed 2778430 edges
      0:00:24.444   472M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == EC Threshold Finding
      0:00:24.444   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 181)   Kmer coverage valley at: 0
      0:00:24.444   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 201)   K-mer histogram maximum: 13
      0:00:24.444   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 237)   Estimated median coverage: 13. Coverage mad: 5.9304
      0:00:24.444   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 259)   Fitting coverage model
      0:00:24.456   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 2
      0:00:24.487   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 4
      0:00:24.595   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 8
      0:00:24.841   472M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 16
      0:00:25.460   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 32
      0:00:26.235   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 64
      0:00:26.428   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 309)   Fitted mean coverage: 13.4147. Fitted coverage std. dev: 4.27326
      0:00:26.429   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 334)   Probability of erroneous kmer at valley: 0.999714
      0:00:26.429   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 358)   Preliminary threshold calculated as: 4
      0:00:26.429   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 362)   Threshold adjusted to: 4
      0:00:26.429   468M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 375)   Estimated genome size (ignoring repeats): 4788539
      0:00:26.429   468M / 9G    INFO    General                 (genomic_info_filler.cpp   : 112)   Mean coverage was calculated as 13.4147
      0:00:26.429   468M / 9G    INFO    General                 (genomic_info_filler.cpp   : 127)   EC coverage threshold value was calculated as 4
      0:00:26.429   468M / 9G    INFO    General                 (genomic_info_filler.cpp   : 128)   Trusted kmer low bound: 0
      0:00:26.429   468M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Gap Closer
      0:00:26.429   468M / 9G    INFO    General                 (graph_pack.hpp            : 101)   Index refill
      0:00:26.429   468M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:26.429   468M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:26.429   468M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:26.429   468M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.19881 Gb
      0:00:26.429   468M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:00:29.421     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  77)   Processed 2778430 edges
      0:00:29.421     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  82)   Used 2778430 sequences.
      0:00:30.192   468M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:30.427   468M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28314268 kmers in total.
      0:00:30.427   468M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:30.885   468M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:32.287   488M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:32.894   488M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13137352 bytes occupied (3.71187 bits per kmer).
      0:00:33.194     1G / 9G    INFO    General                 (edge_index_builders.hpp   : 107)   Collecting edge information from graph, this takes a while.
      0:00:34.116     1G / 9G    INFO    General                 (edge_index.hpp            :  92)   Index refilled
      0:00:34.116     1G / 9G    INFO    General                 (gap_closer.cpp            : 159)   Preparing shift maps
      0:00:36.204     1G / 9G    INFO    General                 (gap_closer.cpp            : 119)   Processing paired reads (takes a while)
      0:00:36.827     1G / 9G    INFO    General                 (gap_closer.cpp            : 138)   Used 462530 paired reads
      0:00:36.827     1G / 9G    INFO    General                 (gap_closer.cpp            : 140)   Merging paired indices
      0:00:37.296     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 346)   Closing short gaps
      0:00:40.791     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 380)   Closing short gaps complete: filled 42 gaps after checking 620 candidates
      0:00:40.897     1G / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Raw Simplification
      0:00:40.902   480M / 9G    INFO    General                 (simplification.cpp        : 128)   PROCEDURE == InitialCleaning
      0:00:40.902   480M / 9G    INFO    General                 (graph_simplification.hpp  : 662)   Flanking coverage based disconnection disabled
      0:00:40.902   480M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Self conjugate edge remover
      0:00:41.018   480M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Self conjugate edge remover triggered 1 times
      0:00:41.018   480M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification
      0:00:41.018   480M / 9G    INFO    General                 (simplification.cpp        : 357)   Graph simplification started
      0:00:41.019   480M / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:41.019   480M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 1
      0:00:41.019   480M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:47.765   492M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 538227 times
      0:00:47.765   492M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.261   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 113653 times
      0:01:18.262   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.267  1000M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 2 times
      0:01:18.267  1000M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 2
      0:01:18.267  1000M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.285   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 558 times
      0:01:18.285   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 6 times
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 4 times
      0:01:18.287   992M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 3
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.287   992M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.311   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 789 times
      0:01:18.311   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 4
      0:01:18.311   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.313   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 102 times
      0:01:18.313   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 108 times
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 5 times
      0:01:18.342   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 5
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 7 times
      0:01:18.342   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 6
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.342   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 1 times
      0:01:18.343   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 7
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 8 times
      0:01:18.343   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 8
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.343   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 18 times
      0:01:18.344   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 9
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.344   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 38 times
      0:01:18.346   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 10
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.346   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.351   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 76 times
      0:01:18.351   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 11
      0:01:18.351   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.354   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.354   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.382   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 6 times
      0:01:18.382   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:01:18.386   988M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 12
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:01:18.386   988M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:01:18.386   988M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Gap Closer
      0:01:18.386   988M / 9G    INFO    General                 (graph_pack.hpp            : 101)   Index refill
      0:01:18.386   988M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:01:18.386   988M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:01:18.386   988M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:01:18.386   988M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.18823 Gb
      0:01:18.386   988M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 131072
      0:01:20.765     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  77)   Processed 38109 edges
      0:01:20.765     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  82)   Used 38109 sequences.
      0:01:21.696   988M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:01:21.819   988M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 5432667 kmers in total.
      0:01:21.819   988M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:01:21.947   988M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:01:22.072  1000M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:01:22.177  1000M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 2527456 bytes occupied (3.72186 bits per kmer).
      0:01:22.316     1G / 9G    INFO    General                 (edge_index_builders.hpp   : 107)   Collecting edge information from graph, this takes a while.
      0:01:22.439     1G / 9G    INFO    General                 (edge_index.hpp            :  92)   Index refilled
      0:01:22.439     1G / 9G    INFO    General                 (gap_closer.cpp            : 159)   Preparing shift maps
      0:01:22.466     1G / 9G    INFO    General                 (gap_closer.cpp            : 119)   Processing paired reads (takes a while)
      0:01:24.538     1G / 9G    INFO    General                 (gap_closer.cpp            : 138)   Used 462530 paired reads
      0:01:24.538     1G / 9G    INFO    General                 (gap_closer.cpp            : 140)   Merging paired indices
      0:01:24.543     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 346)   Closing short gaps
      0:01:24.588     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 380)   Closing short gaps complete: filled 0 gaps after checking 24 candidates
      0:01:24.591     1G / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification Cleanup
      0:01:24.591     1G / 9G    INFO    General                 (simplification.cpp        : 196)   PROCEDURE == Post simplification
      0:01:24.591     1G / 9G    INFO    General                 (graph_simplification.hpp  : 453)   Disconnection of relatively low covered edges disabled
      0:01:24.591     1G / 9G    INFO    General                 (graph_simplification.hpp  : 489)   Complex tip clipping disabled
      0:01:24.591     1G / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:01:24.591     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:24.595     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:24.595     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:24.615     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:01:24.615     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:01:24.618     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:01:24.618     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:01:24.636     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:01:24.636     1G / 9G    INFO    General                 (simplification.cpp        : 330)   Disrupting self-conjugate edges
      0:01:24.651     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Removing isolated edges
      0:01:25.067     1G / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Removing isolated edges triggered 6674 times
      0:01:25.067     1G / 9G    INFO    General                 (simplification.cpp        : 470)   Counting average coverage
      0:01:25.078     1G / 9G    INFO    General                 (simplification.cpp        : 476)   Average coverage = 14.9594
      0:01:25.078     1G / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:25.078     1G / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/assembly_graph_with_scaffolds.gfa
      0:01:25.153     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/before_rr.fasta
      0:01:25.235     1G / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/assembly_graph.fastg
      0:01:25.528     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/simplified_contigs.fasta
      0:01:25.610     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/final_contigs.fasta
      0:01:25.690     1G / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:25.690     1G / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/assembly_graph_with_scaffolds.gfa
      0:01:25.766     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/before_rr.fasta
      0:01:25.848     1G / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/assembly_graph.fastg
      0:01:26.140     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/simplified_contigs.fasta
      0:01:26.225     1G / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K55/final_contigs.fasta
      0:01:26.312     1G / 9G    INFO    General                 (launch.hpp                : 149)   SPAdes finished
      0:01:31.344    72M / 9G    INFO    General                 (main.cpp                  : 109)   Assembling time: 0 hours 1 minutes 31 seconds
    
    == Running assembler: K77
    
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K77/configs/config.info
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  74)   Loaded config from /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/K77/configs/careful_mode.info
      0:00:00.001     4M / 4M    INFO    General                 (memory_limit.cpp          :  49)   Memory limit set to 250 Gb
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  87)   Starting SPAdes, built from N/A, git revision N/A
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  88)   Maximum k-mer length: 128
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  89)   Assembling dataset (/home/annotest/AssemblyWS/SPAdes/SPAdes_Out/dataset.info) with K=77
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  90)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  51)   SPAdes started
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  58)   Starting from stage: construction
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  65)   Two-step RR enabled: 0
      0:00:00.001     4M / 4M    INFO    General                 (launch.hpp                :  76)   Will need read mapping, kmer mapper will be attached
      0:00:00.001     4M / 4M    INFO   StageManager             (stage.cpp                 : 132)   STAGE == de Bruijn graph construction
      0:00:00.002     4M / 4M    INFO    General                 (read_converter.hpp        :  59)   Binary reads detected
      0:00:00.002     4M / 4M    INFO    General                 (construction.cpp          : 111)   Max read length 151
      0:00:00.002     4M / 4M    INFO    General                 (construction.cpp          : 117)   Average read length 151
      0:00:00.002     4M / 4M    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == k+1-mer counting
      0:00:00.002     4M / 4M    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:00.002     4M / 4M    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20825 Gb
      0:00:00.002     4M / 4M    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 87381
      0:00:05.302     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 289)   Processed 1850120 reads
      0:00:05.302     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 295)   Adding contigs from previous K
      0:00:07.111    64M / 9G    INFO    General                 (kmer_splitters.hpp        : 308)   Used 1850120 reads
      0:00:07.111    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:08.494    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28724894 kmers in total.
      0:00:08.494    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:09.412    64M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Extension index construction
      0:00:09.412    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:09.412    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:09.412    64M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:09.412    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20703 Gb
      0:00:09.412    64M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 87381
      0:00:14.039     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 380)   Processed 28724894 kmers
      0:00:14.039     8G / 9G    INFO    General                 (kmer_splitters.hpp        : 385)   Used 28724894 kmers.
      0:00:14.810    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:15.275    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28787624 kmers in total.
      0:00:15.275    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:16.031    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:17.075    64M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:18.029    64M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13356976 bytes occupied (3.71187 bits per kmer).
      0:00:18.052    92M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build:  99)   Building k-mer extensions from k+1-mers
      0:00:19.604    92M / 9G    INFO   DeBruijnExtensionIndexBu (kmer_extension_index_build: 103)   Building k-mer extensions from k+1-mers finished.
      0:00:19.605    92M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Condensing graph
      0:00:19.607    92M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 355)   Extracting unbranching paths
      0:00:21.398   192M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 374)   Extracting unbranching paths finished. 1160163 sequences extracted
      0:00:22.400   192M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 310)   Collecting perfect loops
      0:00:22.759   192M / 9G    INFO   UnbranchingPathExtractor (debruijn_graph_constructor: 343)   Collecting perfect loops finished. 0 loops collected
      0:00:23.348   464M / 9G    INFO    General                 (stage.cpp                 : 101)   PROCEDURE == Filling coverage indices (PHM)
      0:00:23.348   464M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:23.348   464M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:24.158   468M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13327808 bytes occupied (3.71185 bits per kmer).
      0:00:24.220   580M / 9G    INFO    General                 (construction.cpp          : 388)   Collecting k-mer coverage information from reads, this takes a while.
      0:00:25.615   580M / 9G    INFO    General                 (construction.cpp          : 508)   Filling coverage and flanking coverage from PHM
      0:00:27.014   580M / 9G    INFO    General                 (construction.cpp          : 464)   Processed 2320325 edges
      0:00:27.222   428M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == EC Threshold Finding
      0:00:27.222   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 181)   Kmer coverage valley at: 2
      0:00:27.222   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 201)   K-mer histogram maximum: 8
      0:00:27.222   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 237)   Estimated median coverage: 9. Coverage mad: 4.4478
      0:00:27.222   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 259)   Fitting coverage model
      0:00:27.231   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 2
      0:00:27.252   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 4
      0:00:27.323   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 8
      0:00:27.472   428M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 16
      0:00:27.697   424M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 295)   ... iteration 32
      0:00:27.802   420M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 309)   Fitted mean coverage: 9.19109. Fitted coverage std. dev: 3.34463
      0:00:27.802   420M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 334)   Probability of erroneous kmer at valley: 0.354172
      0:00:27.802   420M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 358)   Preliminary threshold calculated as: 5
      0:00:27.802   420M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 362)   Threshold adjusted to: 5
      0:00:27.802   420M / 9G    INFO    General                 (kmer_coverage_model.cpp   : 375)   Estimated genome size (ignoring repeats): 4449079
      0:00:27.802   420M / 9G    INFO    General                 (genomic_info_filler.cpp   : 112)   Mean coverage was calculated as 9.19109
      0:00:27.802   420M / 9G    INFO    General                 (genomic_info_filler.cpp   : 127)   EC coverage threshold value was calculated as 5
      0:00:27.802   420M / 9G    INFO    General                 (genomic_info_filler.cpp   : 128)   Trusted kmer low bound: 1
      0:00:27.802   420M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Gap Closer
      0:00:27.802   420M / 9G    INFO    General                 (graph_pack.hpp            : 101)   Index refill
      0:00:27.802   420M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:27.802   420M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:27.802   420M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:27.802   420M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.19979 Gb
      0:00:27.802   420M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 87381
      0:00:31.220     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  77)   Processed 2320325 edges
      0:00:31.220     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  82)   Used 2320325 sequences.
      0:00:31.904   416M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:32.333   416M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 28724894 kmers in total.
      0:00:32.333   416M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:33.009   416M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:34.197   440M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:35.166   440M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 13327808 bytes occupied (3.71185 bits per kmer).
      0:00:35.435     1G / 9G    INFO    General                 (edge_index_builders.hpp   : 107)   Collecting edge information from graph, this takes a while.
      0:00:36.291     1G / 9G    INFO    General                 (edge_index.hpp            :  92)   Index refilled
      0:00:36.292     1G / 9G    INFO    General                 (gap_closer.cpp            : 159)   Preparing shift maps
      0:00:38.167     1G / 9G    INFO    General                 (gap_closer.cpp            : 119)   Processing paired reads (takes a while)
      0:00:38.744     1G / 9G    INFO    General                 (gap_closer.cpp            : 138)   Used 462530 paired reads
      0:00:38.744     1G / 9G    INFO    General                 (gap_closer.cpp            : 140)   Merging paired indices
      0:00:39.262     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 346)   Closing short gaps
      0:00:42.495     1G / 9G    INFO   GapCloser                (gap_closer.cpp            : 380)   Closing short gaps complete: filled 82 gaps after checking 1106 candidates
      0:00:42.691     1G / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Raw Simplification
      0:00:42.697   432M / 9G    INFO    General                 (simplification.cpp        : 128)   PROCEDURE == InitialCleaning
      0:00:42.697   432M / 9G    INFO    General                 (simplification.cpp        :  62)   Most init cleaning disabled on main iteration
      0:00:42.697   432M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Self conjugate edge remover
      0:00:42.797   432M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Self conjugate edge remover triggered 0 times
      0:00:42.797   432M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification
      0:00:42.797   432M / 9G    INFO    General                 (simplification.cpp        : 357)   Graph simplification started
      0:00:42.797   432M / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:42.797   432M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 1
      0:00:42.797   432M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:51.729   380M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 551441 times
      0:00:51.729   380M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.255   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1919 times
      0:00:52.255   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.276   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:52.276   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 2
      0:00:52.276   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.277   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 12 times
      0:00:52.277   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.277   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.277   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.280   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 94 times
      0:00:52.280   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 3
      0:00:52.280   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.282   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 60 times
      0:00:52.282   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 9 times
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 3 times
      0:00:52.286   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 4
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:52.286   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.287   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 18 times
      0:00:52.287   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 5
      0:00:52.287   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.287   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.287   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.288   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:52.288   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.291   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 85 times
      0:00:52.291   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 6
      0:00:52.291   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.291   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.292   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.292   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.292   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 257 times
      0:00:52.305   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 7
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.305   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 443 times
      0:00:52.329   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 8
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 1 times
      0:00:52.329   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 607 times
      0:00:52.363   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 9
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.363   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 572 times
      0:00:52.398   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 10
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.398   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.438   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 503 times
      0:00:52.438   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 11
      0:00:52.438   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.455   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 1 times
      0:00:52.455   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.481   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.481   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:52.496   392M / 9G    INFO    General                 (simplification.cpp        : 362)   PROCEDURE == Simplification cycle, iteration 12
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Low coverage edge remover
      0:00:52.496   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Low coverage edge remover triggered 0 times
      0:00:52.496   392M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Gap Closer
      0:00:52.496   392M / 9G    INFO    General                 (graph_pack.hpp            : 101)   Index refill
      0:00:52.497   392M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 301)   Building kmer index
      0:00:52.497   392M / 9G    INFO    General                 (kmer_index_builder.hpp    : 117)   Splitting kmer instances into 256 files using 16 threads. This might take a while.
      0:00:52.497   392M / 9G    INFO    General                 (file_limit.hpp            :  32)   Open file limit set to 1024
      0:00:52.497   392M / 9G    INFO    General                 (kmer_splitters.hpp        :  89)   Memory available for splitting buffers: 5.20036 Gb
      0:00:52.497   392M / 9G    INFO    General                 (kmer_splitters.hpp        :  97)   Using cell size of 87381
      0:00:55.146     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  77)   Processed 142399 edges
      0:00:55.146     9G / 9G    INFO    General                 (edge_index_builders.hpp   :  82)   Used 142399 sequences.
      0:00:55.840   388M / 9G    INFO    General                 (kmer_index_builder.hpp    : 120)   Starting k-mer counting.
      0:00:56.003   388M / 9G    INFO    General                 (kmer_index_builder.hpp    : 127)   K-mer counting done. There are 9706450 kmers in total.
      0:00:56.003   388M / 9G    INFO    General                 (kmer_index_builder.hpp    : 133)   Merging temporary buckets.
      0:00:56.238   388M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 314)   Building perfect hash indices
      0:00:56.487   392M / 9G    INFO    General                 (kmer_index_builder.hpp    : 150)   Merging final buckets.
      0:00:56.792   392M / 9G    INFO   K-mer Index Building     (kmer_index_builder.hpp    : 336)   Index built. Total 4508952 bytes occupied (3.71625 bits per kmer).
      0:00:57.029   616M / 9G    INFO    General                 (edge_index_builders.hpp   : 107)   Collecting edge information from graph, this takes a while.
      0:00:57.304   616M / 9G    INFO    General                 (edge_index.hpp            :  92)   Index refilled
      0:00:57.305   616M / 9G    INFO    General                 (gap_closer.cpp            : 159)   Preparing shift maps
      0:00:57.515   636M / 9G    INFO    General                 (gap_closer.cpp            : 119)   Processing paired reads (takes a while)
      0:00:58.964   636M / 9G    INFO    General                 (gap_closer.cpp            : 138)   Used 462530 paired reads
      0:00:58.964   636M / 9G    INFO    General                 (gap_closer.cpp            : 140)   Merging paired indices
      0:00:59.042   616M / 9G    INFO   GapCloser                (gap_closer.cpp            : 346)   Closing short gaps
      0:00:59.203   616M / 9G    INFO   GapCloser                (gap_closer.cpp            : 380)   Closing short gaps complete: filled 1 gaps after checking 181 candidates
      0:00:59.242   616M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Simplification Cleanup
      0:00:59.242   616M / 9G    INFO    General                 (simplification.cpp        : 196)   PROCEDURE == Post simplification
      0:00:59.242   616M / 9G    INFO    General                 (graph_simplification.hpp  : 453)   Disconnection of relatively low covered edges disabled
      0:00:59.242   616M / 9G    INFO    General                 (graph_simplification.hpp  : 489)   Complex tip clipping disabled
      0:00:59.242   616M / 9G    INFO    General                 (graph_simplification.hpp  : 634)   Creating parallel br instance
      0:00:59.242   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:59.273   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:59.273   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:59.297   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:59.297   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Tip clipper
      0:00:59.314   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Tip clipper triggered 0 times
      0:00:59.314   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Bulge remover
      0:00:59.335   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Bulge remover triggered 0 times
      0:00:59.335   616M / 9G    INFO    General                 (simplification.cpp        : 330)   Disrupting self-conjugate edges
      0:00:59.432   616M / 9G    INFO   Simplification           (parallel_processing.hpp   : 165)   Running Removing isolated edges
      0:01:03.531   392M / 9G    INFO   Simplification           (parallel_processing.hpp   : 167)   Removing isolated edges triggered 68071 times
      0:01:03.531   392M / 9G    INFO    General                 (simplification.cpp        : 340)   Removing all the edges having coverage 1 and less
      0:01:03.532   392M / 9G    INFO    General                 (simplification.cpp        : 470)   Counting average coverage
      0:01:03.533   392M / 9G    INFO    General                 (simplification.cpp        : 476)   Average coverage = 9.393
      0:01:03.533   392M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Mismatch Correction
      0:01:03.533   392M / 9G    INFO    General                 (graph_pack.hpp            : 109)   Normalizing k-mer map. Total 311881 kmers to process
      0:01:03.724   388M / 9G    INFO    General                 (graph_pack.hpp            : 111)   Normalizing done
      0:01:06.678   400M / 9G    INFO    General                 (mismatch_shall_not_pass.hp: 189)   Finished collecting potential mismatches positions
      0:01:06.774   388M / 9G    INFO    General                 (mismatch_shall_not_pass.hp: 290)   All edges processed
      0:01:06.775   388M / 9G    INFO    General                 (mismatch_correction.cpp   :  27)   Corrected 0 nucleotides
      0:01:06.776   388M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:06.776   388M / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/assembly_graph_with_scaffolds.gfa
      0:01:06.838   388M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/before_rr.fasta
      0:01:06.900   388M / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/assembly_graph.fastg
      0:01:07.127   388M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/simplified_contigs.fasta
      0:01:07.203   388M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/intermediate_contigs.fasta
      0:01:07.279   388M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Paired Information Counting
      0:01:07.292   388M / 9G    INFO    General                 (graph_pack.hpp            : 109)   Normalizing k-mer map. Total 311881 kmers to process
      0:01:07.292   388M / 9G    INFO    General                 (graph_pack.hpp            : 111)   Normalizing done
      0:01:07.293   388M / 9G    INFO    General                 (pair_info_count.cpp       : 320)   Min edge length for estimation: 6989
      0:01:07.293   388M / 9G    INFO    General                 (pair_info_count.cpp       : 331)   Estimating insert size for library #0
      0:01:07.293   388M / 9G    INFO    General                 (pair_info_count.cpp       : 190)   Estimating insert size (takes a while)
      0:01:07.397   660M / 9G    INFO    General                 (pair_info_count.cpp       :  39)   Selecting usual mapper
      0:01:09.274   660M / 9G    INFO    General                 (sequence_mapper_notifier.h:  98)   Total 462530 reads processed
      0:01:10.663   660M / 9G    INFO    General                 (pair_info_count.cpp       : 209)   Edge pairs: 67108864 (rough upper limit)
      0:01:10.663   660M / 9G    INFO    General                 (pair_info_count.cpp       : 213)   189193 paired reads (40.9039% of all) aligned to long edges
      0:01:10.665   388M / 9G    INFO    General                 (pair_info_count.cpp       : 354)     Insert size = 300.004, deviation = 29.9794, left quantile = 262, right quantile = 338, read length = 151
      0:01:10.730   580M / 9G    INFO    General                 (pair_info_count.cpp       : 371)   Filtering data for library #0
      0:01:10.730   580M / 9G    INFO    General                 (pair_info_count.cpp       :  39)   Selecting usual mapper
      0:01:12.298   580M / 9G    INFO    General                 (sequence_mapper_notifier.h:  98)   Total 462530 reads processed
      0:01:12.298   580M / 9G    INFO    General                 (pair_info_count.cpp       : 383)   Mapping library #0
      0:01:12.298   580M / 9G    INFO    General                 (pair_info_count.cpp       : 385)   Mapping paired reads (takes a while)
      0:01:12.298   580M / 9G    INFO    General                 (pair_info_count.cpp       : 289)   Left insert size quantile 262, right insert size quantile 338, filtering threshold 2, rounding threshold 0
      0:01:12.310   592M / 9G    INFO    General                 (pair_info_count.cpp       :  39)   Selecting usual mapper
      0:01:13.865   592M / 9G    INFO    General                 (sequence_mapper_notifier.h:  98)   Total 462530 reads processed
      0:01:13.877   388M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Distance Estimation
      0:01:13.877   388M / 9G    INFO    General                 (distance_estimation.cpp   : 173)   Processing library #0
      0:01:13.877   388M / 9G    INFO    General                 (distance_estimation.cpp   : 149)   Weight Filter Done
      0:01:13.877   388M / 9G    INFO   DistanceEstimator        (distance_estimation.hpp   : 116)   Using SIMPLE distance estimator
      0:01:13.910   388M / 9G    INFO    General                 (distance_estimation.cpp   :  34)   Filtering info
      0:01:13.910   388M / 9G    INFO    General                 (pair_info_filters.hpp     : 242)   Start filtering; index size: 17495
      0:01:13.921   392M / 9G    INFO    General                 (pair_info_filters.hpp     : 263)   Done filtering
      0:01:13.921   388M / 9G    INFO    General                 (distance_estimation.cpp   : 156)   Refining clustered pair information
      0:01:13.927   388M / 9G    INFO    General                 (distance_estimation.cpp   : 158)   The refining of clustered pair information has been finished
      0:01:13.927   388M / 9G    INFO    General                 (distance_estimation.cpp   : 160)   Improving paired information
      0:01:13.947   388M / 9G    INFO   PairInfoImprover         (pair_info_improver.hpp    : 103)   Paired info stats: missing = 620; contradictional = 628
      0:01:13.967   388M / 9G    INFO   PairInfoImprover         (pair_info_improver.hpp    : 103)   Paired info stats: missing = 33; contradictional = 0
      0:01:13.967   388M / 9G    INFO    General                 (distance_estimation.cpp   : 103)   Filling scaffolding index
      0:01:13.967   388M / 9G    INFO   DistanceEstimator        (distance_estimation.hpp   : 116)   Using SMOOTHING distance estimator
      0:01:13.971   388M / 9G    INFO    General                 (distance_estimation.cpp   :  34)   Filtering info
      0:01:13.971   388M / 9G    INFO    General                 (pair_info_filters.hpp     : 242)   Start filtering; index size: 6265
      0:01:13.974   388M / 9G    INFO    General                 (pair_info_filters.hpp     : 263)   Done filtering
      0:01:13.974   388M / 9G    INFO    General                 (distance_estimation.cpp   : 182)   Clearing raw paired index
      0:01:13.977   388M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Repeat Resolving
      0:01:13.977   388M / 9G    INFO    General                 (repeat_resolving.cpp      :  69)   Using Path-Extend repeat resolving
      0:01:13.977   388M / 9G    INFO    General                 (launcher.cpp              : 477)   ExSPAnder repeat resolving tool started
      0:01:13.992   400M / 9G    INFO    General                 (launcher.cpp              : 392)   Creating main extenders, unique edge length = 2000
      0:01:13.992   400M / 9G    INFO    General                 (extenders_logic.cpp       : 275)   Estimated coverage of library #0 is 9.393
      0:01:13.993   400M / 9G    INFO    General                 (extenders_logic.cpp       : 275)   Estimated coverage of library #0 is 9.393
      0:01:13.994   400M / 9G    INFO    General                 (extenders_logic.cpp       : 472)   Using 1 paired-end library
      0:01:13.994   400M / 9G    INFO    General                 (extenders_logic.cpp       : 473)   Using 1 paired-end scaffolding library
      0:01:13.994   400M / 9G    INFO    General                 (extenders_logic.cpp       : 474)   Using 0 single read libraries
      0:01:13.994   400M / 9G    INFO    General                 (launcher.cpp              : 420)   Total number of extenders is 3
      0:01:13.994   400M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 0 paths from 3082 (0%)
      0:01:14.011   400M / 9G    INFO    General                 (path_extender.hpp         : 883)   Processed 128 paths from 3082 (4%)
      0:01:14.022   404M / 9G    INFO    General                 (path_extender.hpp         : 883)   Processed 256 paths from 3082 (8%)
      0:01:14.027   404M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 309 paths from 3082 (10%)
      0:01:14.052   404M / 9G    INFO    General                 (path_extender.hpp         : 883)   Processed 512 paths from 3082 (16%)
      0:01:14.066   404M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 618 paths from 3082 (20%)
      0:01:14.107   408M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 927 paths from 3082 (30%)
      0:01:14.114   408M / 9G    INFO    General                 (path_extender.hpp         : 883)   Processed 1024 paths from 3082 (33%)
      0:01:14.153   412M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 1236 paths from 3082 (40%)
      0:01:14.229   416M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 1545 paths from 3082 (50%)
      0:01:14.299   416M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 1854 paths from 3082 (60%)
      0:01:14.343   420M / 9G    INFO    General                 (path_extender.hpp         : 883)   Processed 2048 paths from 3082 (66%)
      0:01:14.365   420M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 2163 paths from 3082 (70%)
      0:01:14.432   424M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 2472 paths from 3082 (80%)
      0:01:14.508   428M / 9G    INFO    General                 (path_extender.hpp         : 885)   Processed 2781 paths from 3082 (90%)
      0:01:14.532   428M / 9G    INFO    General                 (launcher.cpp              : 234)   Finalizing paths
      0:01:14.532   428M / 9G    INFO    General                 (launcher.cpp              : 236)   Deduplicating paths
      0:01:14.546   420M / 9G    INFO    General                 (launcher.cpp              : 240)   Paths deduplicated
      0:01:14.546   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 295)   Removing overlaps
      0:01:14.546   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 298)   Sorting paths
      0:01:14.546   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 305)   Marking overlaps
      0:01:14.546   420M / 9G    INFO   OverlapRemover           (pe_resolver.hpp           : 130)   Marking start/end overlaps
      0:01:14.549   420M / 9G    INFO   OverlapRemover           (pe_resolver.hpp           : 133)   Marking remaining overlaps
      0:01:14.551   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 308)   Splitting paths
      0:01:14.554   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 313)   Deduplicating paths
      0:01:14.557   420M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 315)   Overlaps removed
      0:01:14.561   420M / 9G    INFO    General                 (launcher.cpp              : 257)   Paths finalized
      0:01:14.561   420M / 9G    INFO    General                 (launcher.cpp              : 427)   Closing gaps in paths
      0:01:14.568   424M / 9G    INFO    General                 (launcher.cpp              : 455)   Gap closing completed
      0:01:14.570   424M / 9G    INFO    General                 (launcher.cpp              : 286)   Traversing tandem repeats
      0:01:14.594   424M / 9G    INFO    General                 (launcher.cpp              : 296)   Traversed 549 loops
      0:01:14.594   424M / 9G    INFO    General                 (launcher.cpp              : 234)   Finalizing paths
      0:01:14.594   424M / 9G    INFO    General                 (launcher.cpp              : 236)   Deduplicating paths
      0:01:14.595   424M / 9G    INFO    General                 (launcher.cpp              : 240)   Paths deduplicated
      0:01:14.595   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 295)   Removing overlaps
      0:01:14.595   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 298)   Sorting paths
      0:01:14.596   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 305)   Marking overlaps
      0:01:14.596   424M / 9G    INFO   OverlapRemover           (pe_resolver.hpp           : 130)   Marking start/end overlaps
      0:01:14.597   424M / 9G    INFO   OverlapRemover           (pe_resolver.hpp           : 133)   Marking remaining overlaps
      0:01:14.598   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 308)   Splitting paths
      0:01:14.599   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 313)   Deduplicating paths
      0:01:14.599   424M / 9G    INFO   PEResolver               (pe_resolver.hpp           : 315)   Overlaps removed
      0:01:14.601   424M / 9G    INFO    General                 (launcher.cpp              : 257)   Paths finalized
      0:01:14.604   424M / 9G    INFO    General                 (launcher.cpp              : 529)   ExSPAnder repeat resolving tool finished
      0:01:14.625   400M / 9G    INFO   StageManager             (stage.cpp                 : 132)   STAGE == Contig Output
      0:01:14.625   400M / 9G    INFO    General                 (contig_output_stage.cpp   :  40)   Writing GFA to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/assembly_graph_with_scaffolds.gfa
      0:01:14.676   400M / 9G    INFO    General                 (contig_output.hpp         :  22)   Outputting contigs to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/before_rr.fasta
      0:01:14.739   400M / 9G    INFO    General                 (contig_output_stage.cpp   :  51)   Outputting FastG graph to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/assembly_graph.fastg
      0:01:14.954   404M / 9G    INFO    General                 (contig_output_stage.cpp   :  20)   Outputting FastG paths to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/final_contigs.paths
      0:01:15.046   400M / 9G    INFO    General                 (contig_output_stage.cpp   :  20)   Outputting FastG paths to /home/annotest/AssemblyWS/SPAdes/SPAdes_Out//K77/scaffolds.paths
      0:01:15.116   400M / 9G    INFO    General                 (launch.hpp                : 149)   SPAdes finished
      0:01:15.296    68M / 9G    INFO    General                 (main.cpp                  : 109)   Assembling time: 0 hours 1 minutes 15 seconds
    
    ===== Assembling finished. Used k-mer sizes: 21, 33, 55, 77 
    
    
    ===== Mismatch correction started.
    
    == Processing of scaffolds
    
    
    == Running contig polishing tool: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-corrector-core /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/scaffolds/configs/corrector.info /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta
    
    
    == Dataset description file was created: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/scaffolds/configs/corrector.info
    
    /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/scaffolds/configs/log.properties  0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  58)   Starting MismatchCorrector, built from N/A, git revision N/A
      0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  59)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.000     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 195)   Splitting assembly...
      0:00:00.000     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 196)   Assembly file: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta
      0:00:00.174     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 203)   Processing paired sublib of number 0
      0:00:00.174     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 206)   /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz
      0:00:00.174     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 140)   Running bwa index ...: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa index -a is /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta
    [bwa_index] Pack FASTA... 0.07 sec
    [bwa_index] Construct BWT for the packed sequence...
    [bwa_index] 1.31 seconds elapse.
    [bwa_index] Update BWT... 0.06 sec
    [bwa_index] Pack forward-only FASTA... 0.05 sec
    [bwa_index] Construct SA from BWT and Occ... 0.75 sec
    [main] Version: 0.7.12-r1039
    [main] CMD: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa index -a is /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta
    [main] Real time: 2.265 sec; CPU: 2.259 sec
      0:00:02.442     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 149)   Running bwa mem ...:/home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa mem  -v 1 -t 16 /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz  > /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/tmp/corrector_o5hhdch0/lib0_VA0t3N/tmp.sam
    [main] Version: 0.7.12-r1039
    [main] CMD: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa mem -v 1 -t 16 /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_scaffolds.fasta /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz
    [main] Real time: 9.495 sec; CPU: 87.977 sec
      0:00:11.999     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 209)   Adding samfile /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/tmp/corrector_o5hhdch0/lib0_VA0t3N/tmp.sam
      0:00:15.975    60M / 60M   INFO   DatasetProcessor         (dataset_processor.cpp     : 105)   processed 1000000reads, flushing
      0:00:16.183    20M / 60M   INFO   DatasetProcessor         (dataset_processor.cpp     : 235)   Processing contigs
      0:00:17.116   260M / 264M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_16_length_68666_cov_9.322297 processed with 27 changes in thread 11
      0:00:17.186   280M / 284M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_15_length_75367_cov_9.330734 processed with 31 changes in thread 14
      0:00:17.203   284M / 284M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_14_length_79082_cov_9.256731 processed with 30 changes in thread 10
      0:00:17.266   288M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_12_length_80943_cov_9.156667 processed with 47 changes in thread 5
      0:00:17.277   284M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_13_length_79621_cov_9.427487 processed with 22 changes in thread 3
      0:00:17.321   280M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_11_length_86382_cov_9.255362 processed with 41 changes in thread 13
      0:00:17.327   268M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_10_length_91841_cov_9.187971 processed with 40 changes in thread 0
      0:00:17.444   276M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_9_length_93568_cov_9.157053 processed with 61 changes in thread 4
      0:00:17.531   272M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_8_length_102123_cov_9.304206 processed with 45 changes in thread 15
      0:00:17.564   264M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_5_length_105317_cov_9.323489 processed with 53 changes in thread 1
      0:00:17.568   260M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_6_length_103454_cov_9.340192 processed with 46 changes in thread 7
      0:00:17.638   248M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_7_length_103373_cov_9.283738 processed with 42 changes in thread 2
      0:00:17.713   240M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_4_length_117049_cov_9.316383 processed with 56 changes in thread 9
      0:00:17.840   232M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_3_length_127286_cov_9.299499 processed with 56 changes in thread 8
      0:00:17.860   220M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_17_length_67221_cov_9.148710 processed with 42 changes in thread 11
      0:00:17.918   216M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_19_length_59516_cov_9.118121 processed with 41 changes in thread 10
      0:00:17.949   212M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_21_length_58500_cov_9.342707 processed with 40 changes in thread 3
      0:00:17.953   208M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_20_length_59353_cov_9.146029 processed with 45 changes in thread 5
      0:00:17.965   204M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_2_length_140662_cov_9.276381 processed with 60 changes in thread 12
      0:00:17.965   204M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_22_length_56255_cov_9.120474 processed with 32 changes in thread 13
      0:00:17.974   188M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_1_length_142002_cov_9.288807 processed with 83 changes in thread 6
      0:00:17.976   188M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_23_length_54525_cov_9.206270 processed with 20 changes in thread 0
      0:00:18.097   168M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_18_length_61016_cov_9.145982 processed with 36 changes in thread 14
      0:00:18.153   164M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_25_length_53628_cov_9.122052 processed with 46 changes in thread 15
      0:00:18.172   160M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_26_length_52671_cov_8.958684 processed with 29 changes in thread 1
      0:00:18.195   156M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_24_length_54285_cov_9.341924 processed with 32 changes in thread 4
      0:00:18.231   152M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_28_length_49923_cov_9.205292 processed with 32 changes in thread 2
      0:00:18.272   152M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_27_length_51962_cov_9.223783 processed with 15 changes in thread 7
      0:00:18.303   148M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_29_length_49269_cov_9.104692 processed with 32 changes in thread 9
      0:00:18.412   144M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_32_length_44267_cov_9.305386 processed with 17 changes in thread 10
      0:00:18.426   144M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_30_length_46027_cov_9.221349 processed with 19 changes in thread 8
      0:00:18.444   140M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_34_length_42977_cov_9.193357 processed with 25 changes in thread 5
      0:00:18.450   140M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_31_length_45461_cov_9.278821 processed with 20 changes in thread 11
      0:00:18.452   136M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_38_length_40177_cov_9.005012 processed with 20 changes in thread 6
      0:00:18.452   132M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_37_length_40871_cov_9.215571 processed with 14 changes in thread 0
      0:00:18.459   128M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_33_length_42997_cov_9.426375 processed with 14 changes in thread 3
      0:00:18.461   128M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_36_length_42333_cov_9.380561 processed with 13 changes in thread 12
      0:00:18.462   120M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_35_length_42826_cov_9.105312 processed with 29 changes in thread 13
      0:00:18.578   112M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_39_length_39763_cov_9.213929 processed with 21 changes in thread 14
      0:00:18.611   112M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_42_length_36235_cov_9.288484 processed with 27 changes in thread 4
      0:00:18.619   112M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_40_length_39706_cov_9.178480 processed with 28 changes in thread 15
      0:00:18.631   108M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_41_length_39340_cov_9.266689 processed with 10 changes in thread 1
      0:00:18.683   108M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_44_length_35354_cov_9.258951 processed with 15 changes in thread 7
      0:00:18.687   108M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_43_length_35960_cov_9.286542 processed with 11 changes in thread 2
      0:00:18.717   108M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_45_length_35098_cov_9.382456 processed with 7 changes in thread 9
      0:00:18.762   112M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_54_length_27094_cov_9.077100 processed with 9 changes in thread 13
      0:00:18.791   108M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_53_length_28791_cov_9.096399 processed with 12 changes in thread 12
      0:00:18.797   104M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_52_length_29416_cov_8.992501 processed with 26 changes in thread 3
      0:00:18.802   100M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_46_length_34659_cov_9.288271 processed with 17 changes in thread 10
      0:00:18.821    96M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_50_length_31620_cov_9.175221 processed with 20 changes in thread 0
      0:00:18.824    96M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_48_length_32089_cov_9.280301 processed with 21 changes in thread 5
      0:00:18.869    92M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_55_length_26224_cov_9.265537 processed with 12 changes in thread 14
      0:00:18.879    92M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_47_length_32658_cov_9.352353 processed with 15 changes in thread 8
      0:00:18.887    88M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_49_length_31943_cov_9.358972 processed with 18 changes in thread 11
      0:00:18.908    84M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_51_length_31299_cov_9.338928 processed with 17 changes in thread 6
      0:00:18.913    84M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_56_length_26007_cov_9.247358 processed with 13 changes in thread 4
      0:00:18.916    84M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_57_length_24953_cov_9.437128 processed with 17 changes in thread 15
      0:00:18.917    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_58_length_24791_cov_9.431820 processed with 5 changes in thread 1
      0:00:18.956    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_60_length_24062_cov_9.420930 processed with 7 changes in thread 2
      0:00:18.974    84M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_59_length_24346_cov_9.340517 processed with 6 changes in thread 7
      0:00:18.985    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_61_length_23950_cov_9.240355 processed with 14 changes in thread 9
      0:00:19.034    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_62_length_23365_cov_9.311276 processed with 3 changes in thread 13
      0:00:19.055    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_65_length_22151_cov_9.331974 processed with 4 changes in thread 10
      0:00:19.060    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_63_length_23326_cov_9.087402 processed with 7 changes in thread 12
      0:00:19.061    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_64_length_22851_cov_9.505225 processed with 13 changes in thread 3
      0:00:19.063    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_67_length_21459_cov_9.305631 processed with 9 changes in thread 5
      0:00:19.072    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_66_length_21630_cov_9.460168 processed with 7 changes in thread 0
      0:00:19.114    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_70_length_20349_cov_9.175069 processed with 15 changes in thread 11
      0:00:19.115    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_68_length_21372_cov_9.361446 processed with 4 changes in thread 14
      0:00:19.128    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_69_length_20560_cov_8.885710 processed with 20 changes in thread 8
      0:00:19.154    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_72_length_20049_cov_9.416383 processed with 1 changes in thread 4
      0:00:19.193    80M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_71_length_20334_cov_9.237153 processed with 18 changes in thread 6
      0:00:19.849    76M / 288M  INFO   DatasetProcessor         (dataset_processor.cpp     : 255)   Gluing processed contigs
      0:00:19.870    64M / 288M  INFO    General                 (main.cpp                  :  72)   Correcting time: 0 hours 0 minutes 19 seconds
    
    == Processing of contigs
    
    
    == Running contig polishing tool: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-corrector-core /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/contigs/configs/corrector.info /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta
    
    
    == Dataset description file was created: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/contigs/configs/corrector.info
    
    /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/mismatch_corrector/contigs/configs/log.properties  0:00:00.000     4M / 4M    INFO    General                 (main.cpp                  :  58)   Starting MismatchCorrector, built from N/A, git revision N/A
      0:00:00.001     4M / 4M    INFO    General                 (main.cpp                  :  59)   Maximum # of threads to use (adjusted due to OMP capabilities): 16
      0:00:00.001     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 195)   Splitting assembly...
      0:00:00.001     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 196)   Assembly file: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta
      0:00:00.261     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 203)   Processing paired sublib of number 0
      0:00:00.261     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 206)   /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz
      0:00:00.261     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 140)   Running bwa index ...: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa index -a is /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta
    [bwa_index] Pack FASTA... 0.07 sec
    [bwa_index] Construct BWT for the packed sequence...
    [bwa_index] 1.40 seconds elapse.
    [bwa_index] Update BWT... 0.06 sec
    [bwa_index] Pack forward-only FASTA... 0.05 sec
    [bwa_index] Construct SA from BWT and Occ... 0.76 sec
    [main] Version: 0.7.12-r1039
    [main] CMD: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa index -a is /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta
    [main] Real time: 2.360 sec; CPU: 2.351 sec
      0:00:02.625     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 149)   Running bwa mem ...:/home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa mem  -v 1 -t 16 /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz  > /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/tmp/corrector_ts3eej1f/lib0_xpD8b2/tmp.sam
    [main] Version: 0.7.12-r1039
    [main] CMD: /home/share/apps/SPAdes-3.12.0-Linux/bin/spades-bwa mem -v 1 -t 16 /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/misc/assembled_contigs.fasta /home/annotest/AssemblyWS/SPAdes/cabV2_read1.fq.gz /home/annotest/AssemblyWS/SPAdes/cabV2_read2.fq.gz
    [main] Real time: 9.463 sec; CPU: 90.052 sec
      0:00:12.146     4M / 4M    INFO   DatasetProcessor         (dataset_processor.cpp     : 209)   Adding samfile /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/tmp/corrector_ts3eej1f/lib0_xpD8b2/tmp.sam
      0:00:15.640    56M / 56M   INFO   DatasetProcessor         (dataset_processor.cpp     : 105)   processed 1000000reads, flushing
      0:00:16.517    20M / 60M   INFO   DatasetProcessor         (dataset_processor.cpp     : 235)   Processing contigs
      0:00:16.820    88M / 88M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_16_length_20142_cov_9.388886 processed with 8 changes in thread 11
      0:00:16.825    88M / 88M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_15_length_20345_cov_9.764210 processed with 0 changes in thread 15
      0:00:16.832    88M / 88M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_11_length_22641_cov_9.907818 processed with 0 changes in thread 2
      0:00:16.832    88M / 88M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_14_length_21372_cov_9.361446 processed with 4 changes in thread 3
      0:00:16.841    88M / 88M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_13_length_21930_cov_9.955384 processed with 1 changes in thread 7
      0:00:16.850    92M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_6_length_24310_cov_9.351917 processed with 6 changes in thread 1
      0:00:16.857    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_8_length_24220_cov_9.404962 processed with 5 changes in thread 4
      0:00:16.864    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_12_length_22151_cov_9.331974 processed with 3 changes in thread 14
      0:00:16.869    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_9_length_23745_cov_9.673187 processed with 5 changes in thread 5
      0:00:16.873    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_10_length_23680_cov_9.427319 processed with 6 changes in thread 8
      0:00:16.874    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_2_length_28101_cov_9.624358 processed with 7 changes in thread 0
      0:00:16.881    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_7_length_24297_cov_9.539595 processed with 6 changes in thread 13
      0:00:16.892    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_5_length_26093_cov_9.203990 processed with 6 changes in thread 6
      0:00:16.900    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_3_length_27449_cov_9.297348 processed with 4 changes in thread 9
      0:00:16.910    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_4_length_27046_cov_9.518818 processed with 5 changes in thread 10
      0:00:16.977    88M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_1_length_31311_cov_9.432349 processed with 0 changes in thread 12
      0:00:17.085    84M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_17_length_20131_cov_9.570460 processed with 1 changes in thread 11
      0:00:17.105    80M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 251)   Contig NODE_18_length_20049_cov_9.416383 processed with 1 changes in thread 15
      0:00:20.082    80M / 92M   INFO   DatasetProcessor         (dataset_processor.cpp     : 255)   Gluing processed contigs
      0:00:20.109    64M / 92M   INFO    General                 (main.cpp                  :  72)   Correcting time: 0 hours 0 minutes 20 seconds
    
    ===== Mismatch correction finished.
    
     * Assembled contigs are in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/contigs.fasta
     * Assembled scaffolds are in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/scaffolds.fasta
     * Assembly graph is in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/assembly_graph.fastg
     * Assembly graph in GFA format is in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/assembly_graph_with_scaffolds.gfa
     * Paths in the assembly graph corresponding to the contigs are in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/contigs.paths
     * Paths in the assembly graph corresponding to the scaffolds are in /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/scaffolds.paths
    
    ======= SPAdes pipeline finished.
    
    SPAdes log can be found here: /home/annotest/AssemblyWS/SPAdes/SPAdes_Out/spades.log
    
    Thank you for using SPAdes!
    

    -Use 16 CPU threads

    -Output is saved in SPAdes_Out directory


    MaSuRCA assembler

    • Create directory for running MaSuRCA
    In [79]:
    cd ..
    
    /home/annotest/AssemblyWS
    
    In [92]:
    mkdir MaSuRCA
    
  • Change directory to working directory, create symbolic links of FASTQ files.
  • In [93]:
    cd MaSuRCA
    
    /home/annotest/AssemblyWS/MaSuRCA
    
    In [94]:
    %%bash
    ln -s ../FASTQ/* .
    
    In [95]:
    ls -l
    
    total 0
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:28 cabV2_read1.fq.gz -> ../FASTQ/cabV2_read1.fq.gz
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1 26 Aug  7 16:28 cabV2_read2.fq.gz -> ../FASTQ/cabV2_read2.fq.gz
    
  • Generate template of the config file
  • In [96]:
    %%bash
    /share/apps/MaSuRCA-3.2.8/bin/masurca -G config.txt
    
  • Edit the config file to specify our raw reads
  • nano config.txt

    Change the contents as follow :
    
      PE= pe 300 50  cabV2_read1.fq.gz  cabV2_read2.fq.gz
      #JUMP= sh 3600 200  /FULL_PATH/short_1.fastq  /FULL_PATH/short_2.fastq
    In [98]:
    cat config.txt
    
    # example configuration file 
    
    # DATA is specified as type {PE,JUMP,OTHER,PACBIO} and 5 fields:
    # 1)two_letter_prefix 2)mean 3)stdev 4)fastq(.gz)_fwd_reads
    # 5)fastq(.gz)_rev_reads. The PE reads are always assumed to be
    # innies, i.e. --->.<---, and JUMP are assumed to be outties
    # <---.--->. If there are any jump libraries that are innies, such as
    # longjump, specify them as JUMP and specify NEGATIVE mean. Reverse reads
    # are optional for PE libraries and mandatory for JUMP libraries. Any
    # OTHER sequence data (454, Sanger, Ion torrent, etc) must be first
    # converted into Celera Assembler compatible .frg files (see
    # http://wgs-assembler.sourceforge.com)
    DATA
    #Illumina paired end reads supplied as <two-character prefix> <fragment mean> <fragment stdev> <forward_reads> <reverse_reads>
    #if single-end, do not specify <reverse_reads>
    #MUST HAVE Illumina paired end reads to use MaSuRCA
    PE= pe 300 50  cabV2_read1.fq.gz cabV2_read2.fq.gz
    #Illumina mate pair reads supplied as <two-character prefix> <fragment mean> <fragment stdev> <forward_reads> <reverse_reads>
    #JUMP= sh 3600 200  /FULL_PATH/short_1.fastq  /FULL_PATH/short_2.fastq
    #pacbio OR nanopore reads must be in a single fasta or fastq file with absolute path, can be gzipped
    #if you have both types of reads supply them both as NANOPORE type
    #PACBIO=/FULL_PATH/pacbio.fa
    #NANOPORE=/FULL_PATH/nanopore.fa
    #Other reads (Sanger, 454, etc) one frg file, concatenate your frg files into one if you have many
    #OTHER=/FULL_PATH/file.frg
    END
    
    PARAMETERS
    #set this to 1 if your Illumina jumping library reads are shorter than 100bp
    EXTEND_JUMP_READS=0
    #this is k-mer size for deBruijn graph values between 25 and 127 are supported, auto will compute the optimal size based on the read data and GC content
    GRAPH_KMER_SIZE = auto
    #set this to 1 for all Illumina-only assemblies
    #set this to 0 if you have more than 15x coverage by long reads (Pacbio or Nanopore) or any other long reads/mate pairs (Illumina MP, Sanger, 454, etc)
    USE_LINKING_MATES = 0
    #specifies whether to run mega-reads correction on the grid
    USE_GRID=0
    #specifies queue to use when running on the grid MANDATORY
    GRID_QUEUE=all.q
    #batch size in the amount of long read sequence for each batch on the grid
    GRID_BATCH_SIZE=300000000
    #use at most this much coverage by the longest Pacbio or Nanopore reads
    LHE_COVERAGE=30
    #set to 1 to only do one pass of mega-reads, for faster but worse quality assembly
    MEGA_READS_ONE_PASS=0
    #this parameter is useful if you have too many Illumina jumping library mates. Typically set it to 60 for bacteria and 300 for the other organisms 
    LIMIT_JUMP_COVERAGE = 300
    #these are the additional parameters to Celera Assembler.  do not worry about performance, number or processors or batch sizes -- these are computed automatically. 
    #set cgwErrorRate=0.25 for bacteria and 0.1<=cgwErrorRate<=0.15 for other organisms.
    CA_PARAMETERS =  cgwErrorRate=0.15
    #minimum count k-mers used in error correction 1 means all k-mers are used.  one can increase to 2 if Illumina coverage >100
    KMER_COUNT_THRESHOLD = 1
    #whether to attempt to close gaps in scaffolds with Illumina data
    CLOSE_GAPS=1
    #auto-detected number of cpus to use
    NUM_THREADS = 16
    #this is mandatory jellyfish hash size -- a safe value is estimated_genome_size*estimated_coverage
    JF_SIZE = 200000000
    #set this to 1 to use SOAPdenovo contigging/scaffolding module.  Assembly will be worse but will run faster. Useful for very large (>5Gbp) genomes from Illumina-only data
    SOAP_ASSEMBLY=0
    END
    
  • Generate the script file
  • In [99]:
    %%bash
    /share/apps/MaSuRCA-3.2.8/bin/masurca config.txt
    
    Verifying PATHS...
    jellyfish OK
    runCA OK
    createSuperReadsForDirectory.perl OK
    creating script file for the actions...done.
    execute assemble.sh to run assembly
    
    In [100]:
    ls -l
    
    total 20
    -rwxr-xr-x 1 jupyterhub1 jupyterhub1 13467 Aug  7 16:31 assemble.sh*
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1    26 Aug  7 16:28 cabV2_read1.fq.gz -> ../FASTQ/cabV2_read1.fq.gz
    lrwxrwxrwx 1 jupyterhub1 jupyterhub1    26 Aug  7 16:28 cabV2_read2.fq.gz -> ../FASTQ/cabV2_read2.fq.gz
    -rw-rw-r-- 1 jupyterhub1 jupyterhub1  3503 Aug  7 16:30 config.txt
    
  • Execute the assemble.sh script
  • In [101]:
    %%bash
    ./assemble.sh
    
    [Tue Aug  7 16:31:53 +07 2018] Processing pe library reads
    [Tue Aug  7 16:31:55 +07 2018] Average PE read length 151
    [Tue Aug  7 16:31:56 +07 2018] Using kmer size of 99 for the graph
    [Tue Aug  7 16:31:56 +07 2018] MIN_Q_CHAR: 33
    [Tue Aug  7 16:31:56 +07 2018] Creating mer database for Quorum
    [Tue Aug  7 16:32:00 +07 2018] Error correct PE.
    [Tue Aug  7 16:32:12 +07 2018] Estimating genome size.
    [Tue Aug  7 16:32:16 +07 2018] Estimated genome size: 4694327
    [Tue Aug  7 16:32:16 +07 2018] Creating k-unitigs with k=99
    [Tue Aug  7 16:32:27 +07 2018] Computing super reads from PE 
    [Tue Aug  7 16:32:31 +07 2018] Celera Assembler
    [Tue Aug  7 16:32:32 +07 2018] ovlMerThreshold=75
    [Tue Aug  7 16:33:08 +07 2018] Overlap/unitig success
    [Tue Aug  7 16:33:08 +07 2018] recomputing A-stat for super-reads
    [Tue Aug  7 16:33:34 +07 2018] recomputing A-stat for super-reads
    [Tue Aug  7 16:33:36 +07 2018] Unitig consensus success
    [Tue Aug  7 16:34:03 +07 2018] CA success
    [Tue Aug  7 16:34:03 +07 2018] No gap closing possible.
    [Tue Aug  7 16:34:08 +07 2018] Assembly complete, final scaffold sequences are in CA/final.genome.scf.fasta
    [Tue Aug  7 16:34:08 +07 2018] All done
    

    =================================================================================================================

    QUAST : Quality Assessment Tool for Genome Assemblies

    Compare the quality of the assemblers

    Software is installed at /share/quast-5.0.0

    • Create directory for running QUAST
    In [102]:
    cd ..
    
    /home/annotest/AssemblyWS
    
    In [103]:
    mkdir QUAST
    
  • Change directory to working directory, create symbolic links of contigs files and reference file.
  • In [104]:
    cd QUAST
    
    /home/annotest/AssemblyWS/QUAST
    
    In [105]:
    %%bash
    ln -s ../Velvet/Test_75/contigs.fa contigs_velvet_K75.fa
    
    In [106]:
    %%bash
    ln -s ../VelvetOptimiser/auto_data_91/contigs.fa contigs_velvetOpt_K91.fa
    
    In [113]:
    %%bash
    ln -s ../SPAdes/SPAdes_Out/contigs.fasta contigs_SPAdes.fa
    
    In [114]:
    %%bash
    ln -s ../SPAdes/SPAdes_Out/scaffolds.fasta scaffolds_SPAdes.fa
    
    In [119]:
    %%bash
    ln -s ../MaSuRCA/CA/final.genome.scf.fasta scaffolds_MaSuRCA.fa
    
    In [110]:
    %%bash
    ln -s ../FASTA/cabV2.fa .
    
  • Run the QUAST
  • In [120]:
    %%bash
    /share/apps/quast-5.0.0/quast.py -r cabV2.fa -t 4 contigs_velvet_K75.fa contigs_velvetOpt_K91.fa contigs_SPAdes.fa scaffolds_SPAdes.fa scaffolds_MaSuRCA.fa -o QUAST_Report
    
    /share/apps/quast-5.0.0/quast.py -r cabV2.fa -t 4 contigs_velvet_K75.fa contigs_velvetOpt_K91.fa contigs_SPAdes.fa scaffolds_SPAdes.fa scaffolds_MaSuRCA.fa -o QUAST_Report
    
    Version: 5.0.0
    
    System information:
      OS: Linux-3.10.0-514.26.2.el7.x86_64-x86_64-with-centos-7.4.1708-Core (linux_64)
      Python version: 3.5.5
      CPUs number: 144
    
    Started: 2018-08-07 16:40:51
    
    Logging to /home/annotest/AssemblyWS/QUAST/QUAST_Report/quast.log
    
    CWD: /home/annotest/AssemblyWS/QUAST
    Main parameters: 
      MODE: default, threads: 4, minimum contig length: 500, minimum alignment length: 65, \
      ambiguity: one, threshold for extensive misassembly size: 1000
    
    Reference:
      /home/annotest/AssemblyWS/QUAST/cabV2.fa ==> cabV2
    
    Contigs:
      Pre-processing...
      1  contigs_velvet_K75.fa ==> contigs_velvet_K75
      2  contigs_velvetOpt_K91.fa ==> contigs_velvetOpt_K91
      3  contigs_SPAdes.fa ==> contigs_SPAdes
      4  scaffolds_SPAdes.fa ==> scaffolds_SPAdes
      5  scaffolds_MaSuRCA.fa ==> scaffolds_MaSuRCA
    
    2018-08-07 16:40:56
    Running Basic statistics processor...
      Reference genome:
        cabV2.fa, length = 4799920, num fragments = 1, GC % = 31.97
      Contig files: 
        1  contigs_velvet_K75
        2  contigs_velvetOpt_K91
        3  contigs_SPAdes
        4  scaffolds_SPAdes
        5  scaffolds_MaSuRCA
      Calculating N50 and L50...
        1  contigs_velvet_K75, N50 = 55329, L50 = 25, Total length = 4591890, GC % = 31.99, # N's per 100 kbp =  441.80
        2  contigs_velvetOpt_K91, N50 = 22892, L50 = 57, Total length = 4615405, GC % = 31.99, # N's per 100 kbp =  1012.61
        3  contigs_SPAdes, N50 = 8046, L50 = 171, Total length = 4589773, GC % = 31.98, # N's per 100 kbp =  0.00
        4  scaffolds_SPAdes, N50 = 49269, L50 = 29, Total length = 4644726, GC % = 31.99, # N's per 100 kbp =  1160.89
        5  scaffolds_MaSuRCA, N50 = 63511, L50 = 20, Total length = 4615776, GC % = 32.01, # N's per 100 kbp =  0.00
      Drawing Nx plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/Nx_plot.pdf
      Drawing NGx plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/NGx_plot.pdf
      Drawing cumulative plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/cumulative_plot.pdf
      Drawing GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/GC_content_plot.pdf
      Drawing contigs_velvet_K75 GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_velvet_K75_GC_content_plot.pdf
      Drawing contigs_velvetOpt_K91 GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_velvetOpt_K91_GC_content_plot.pdf
      Drawing contigs_SPAdes GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_SPAdes_GC_content_plot.pdf
      Drawing scaffolds_SPAdes GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/scaffolds_SPAdes_GC_content_plot.pdf
      Drawing scaffolds_MaSuRCA GC content plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/scaffolds_MaSuRCA_GC_content_plot.pdf
      Drawing Coverage histogram (bin size: 1x)...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/coverage_histogram.pdf
      Drawing contigs_velvet_K75 coverage histogram (bin size: 1x)...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_velvet_K75_coverage_histogram.pdf
      Drawing contigs_velvetOpt_K91 coverage histogram (bin size: 1x)...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_velvetOpt_K91_coverage_histogram.pdf
      Drawing contigs_SPAdes coverage histogram (bin size: 1x)...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/contigs_SPAdes_coverage_histogram.pdf
      Drawing scaffolds_SPAdes coverage histogram (bin size: 1x)...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/basic_stats/scaffolds_SPAdes_coverage_histogram.pdf
    Done.
    
    2018-08-07 16:41:01
    Running Contig analyzer...
      1  contigs_velvet_K75
      1  Logging to files /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/contigs_report_contigs_velvet_K75.stdout and contigs_report_contigs_velvet_K75.stderr...
      1  Aligning contigs to the reference
      2  contigs_velvetOpt_K91
      2  Logging to files /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/contigs_report_contigs_velvetOpt_K91.stdout and contigs_report_contigs_velvetOpt_K91.stderr...
      2  Aligning contigs to the reference
      3  contigs_SPAdes
      3  Logging to files /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/contigs_report_contigs_SPAdes.stdout and contigs_report_contigs_SPAdes.stderr...
      3  Aligning contigs to the reference
      4  scaffolds_SPAdes
      4  Logging to files /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/contigs_report_scaffolds_SPAdes.stdout and contigs_report_scaffolds_SPAdes.stderr...
      4  Aligning contigs to the reference
      1  Analysis is finished.
      5  scaffolds_MaSuRCA
      5  Logging to files /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/contigs_report_scaffolds_MaSuRCA.stdout and contigs_report_scaffolds_MaSuRCA.stderr...
      5  Aligning contigs to the reference
      3  Analysis is finished.
      2  Analysis is finished.
      4  Analysis is finished.
      5  Analysis is finished.
      Creating total report...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/misassemblies_report.txt, misassemblies_report.tsv, and misassemblies_report.tex
      Transposed version of total report...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/transposed_report_misassemblies.txt, transposed_report_misassemblies.tsv, and transposed_report_misassemblies.tex
      Creating total report...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/unaligned_report.txt, unaligned_report.tsv, and unaligned_report.tex
      Drawing misassemblies by types plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/misassemblies_plot.pdf
      Drawing misassemblies FRCurve plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/contigs_reports/misassemblies_frcurve_plot.pdf
    Done.
    
    2018-08-07 16:41:08
    Running NA-NGA calculation...
      1  contigs_velvet_K75, Largest alignment = 171055, NA50 = 44603, NGA50 = 43734, LA50 = 27, LGA50 = 29
      2  contigs_velvetOpt_K91, Largest alignment = 112338, NA50 = 20897, NGA50 = 19883, LA50 = 58, LGA50 = 63
      3  contigs_SPAdes, Largest alignment = 31311, NA50 = 8044, NGA50 = 7841, LA50 = 171, LGA50 = 185
      4  scaffolds_SPAdes, Largest alignment = 139088, NA50 = 44026, NGA50 = 42900, LA50 = 31, LGA50 = 33
      5  scaffolds_MaSuRCA, Largest alignment = 219320, NA50 = 63511, NGA50 = 62173, LA50 = 20, LGA50 = 22
      Drawing cumulative plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/aligned_stats/cumulative_plot.pdf
      Drawing NAx plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/aligned_stats/NAx_plot.pdf
      Drawing NGAx plot...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/aligned_stats/NGAx_plot.pdf
    Done.
    
    2018-08-07 16:41:09
    Running Genome analyzer...
      NOTICE: No file with genomic features were provided. Use the --features option if you want to specify it.
    
      NOTICE: No file with operons were provided. Use the -O option if you want to specify it.
      1  contigs_velvet_K75
      2  contigs_velvetOpt_K91
      3  contigs_SPAdes
      4  scaffolds_SPAdes
      1  Analysis is finished.
      5  scaffolds_MaSuRCA
      2  Analysis is finished.
      3  Analysis is finished.
      4  Analysis is finished.
      5  Analysis is finished.
      Drawing Genome fraction, % histogram...
        saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/genome_stats/genome_fraction_histogram.pdf
    Done.
    
    NOTICE: Genes are not predicted by default. Use --gene-finding or --glimmer option to enable it.
    
    2018-08-07 16:41:13
    Creating large visual summaries...
    This may take a while: press Ctrl-C to skip this step..
      1 of 2: Creating Icarus viewers...
      2 of 2: Creating PDF with all tables and plots...
    Done
    
    2018-08-07 16:41:18
    RESULTS:
      Text versions of total report are saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/report.txt, report.tsv, and report.tex
      Text versions of transposed total report are saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/transposed_report.txt, transposed_report.tsv, and transposed_report.tex
      HTML version (interactive tables and plots) is saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/report.html
      PDF version (tables and plots) is saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/report.pdf
      Icarus (contig browser) is saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/icarus.html
      Log is saved to /home/annotest/AssemblyWS/QUAST/QUAST_Report/quast.log
    
    Finished: 2018-08-07 16:41:18
    Elapsed time: 0:00:26.266695
    NOTICEs: 3; WARNINGs: 0; non-fatal ERRORs: 0
    
    Thank you for using QUAST!
    

    The report is generated in QUAST_Report directory.

  • Use ~/public_html to visualize the QUAST report
  • In [ ]:
    cd ~/public_html
    
    In [124]:
    cp -rp ../AssemblyWS/QUAST/QUAST_Report .
    
    In [125]:
    ls -l
    
    total 16
    -rwxr-xr-x  1 annotest    annotest     151 Aug  1 02:48 index.html*
    drwxrwxr-x 11 annotest    annotest    4096 Aug  1 03:10 JBrowse/
    drwxrwxr-x  7 jupyterhub1 jupyterhub1 4096 Aug  7 16:41 QUAST_Report/
    drwxrwxr-x  3 annotest    annotest    4096 Aug  6 21:33 Tomato/
    
  • Use your Web browser to visualize the QUAST report
  • In [ ]:
    http://breedserve.cab.kps.ku.ac.th/~annotest/QUAST_Report/report.html
    

    change ~annotest to your username

    In [126]:
    from IPython.display import HTML
    HTML(filename="/home/annotest/public_html/QUAST_Report/report.html")
    
    Out[126]:

    QUAST

    Quality Assessment Tool for Genome Assemblies by CAB

    {"subreferences":[],"referenceName":"cabV2","subreports":[],"report":[["Genome statistics",[{"metricName":"Genome fraction (%)","isMain":true,"values":["99.088","98.742","99.018","98.934","99.606"],"quality":"More is better"},{"metricName":"Duplication ratio","isMain":true,"values":["1.004","1.013","1.004","1.016","1.004"],"quality":"Less is better"},{"metricName":"Largest alignment","isMain":true,"values":[171055,112338,31311,139088,219320],"quality":"More is better"},{"metricName":"Total aligned length","isMain":true,"values":[4585316,4594627,4587362,4565702,4613514],"quality":"More is better"},{"metricName":"NG50","isMain":false,"values":[49739,21117,7843,45461,62173],"quality":"More is better"},{"metricName":"NG75","isMain":false,"values":[18208,10891,4454,20560,28658],"quality":"More is better"},{"metricName":"NA50","isMain":false,"values":[44603,20897,8044,44026,63511],"quality":"More is better"},{"metricName":"NA75","isMain":false,"values":[19879,11539,4929,21372,31126],"quality":"More is better"},{"metricName":"NGA50","isMain":true,"values":[43734,19883,7841,42900,62173],"quality":"More is better"},{"metricName":"NGA75","isMain":false,"values":[16588,10292,4435,19761,28658],"quality":"More is better"},{"metricName":"LG50","isMain":false,"values":[27,61,185,31,22],"quality":"Less is better"},{"metricName":"LG75","isMain":false,"values":[68,141,384,69,50],"quality":"Less is better"},{"metricName":"LA50","isMain":false,"values":[27,58,171,31,20],"quality":"Less is better"},{"metricName":"LA75","isMain":false,"values":[65,134,351,67,45],"quality":"Less is better"},{"metricName":"LGA50","isMain":true,"values":[29,63,185,33,22],"quality":"Less is better"},{"metricName":"LGA75","isMain":false,"values":[73,147,385,73,50],"quality":"Less is better"}]],["Reads mapping",[]],["Misassemblies",[{"metricName":"# misassemblies","isMain":true,"values":[18,11,2,2,0],"quality":"Less is better"},{"metricName":" # relocations","isMain":false,"values":[18,10,2,2,0],"quality":"Less is better"},{"metricName":" # translocations","isMain":false,"values":[0,0,0,0,0],"quality":"Less is better"},{"metricName":" # inversions","isMain":false,"values":[0,1,0,0,0],"quality":"Less is better"},{"metricName":"# misassembled contigs","isMain":false,"values":[13,10,2,2,0],"quality":"Less is better"},{"metricName":"Misassembled contigs length","isMain":true,"values":[535728,162283,15148,63989,0],"quality":"Less is better"},{"metricName":"# local misassemblies","isMain":false,"values":[7,8,6,8,8],"quality":"Less is better"},{"metricName":"# scaffold gap ext. mis.","isMain":false,"values":[3,2,0,2,0],"quality":"Less is better"},{"metricName":"# scaffold gap loc. mis.","isMain":false,"values":[37,196,0,458,0],"quality":"Less is better"},{"metricName":"# unaligned mis. contigs","isMain":false,"values":[0,0,0,0,0],"quality":"Less is better"}]],["Unaligned",[{"metricName":"# fully unaligned contigs","isMain":false,"values":[0,0,0,0,0],"quality":"Less is better"},{"metricName":"Fully unaligned length","isMain":false,"values":[0,0,0,0,0],"quality":"Less is better"},{"metricName":"# partially unaligned contigs","isMain":false,"values":[0,1,0,3,0],"quality":"Less is better"},{"metricName":"Partially unaligned length","isMain":false,"values":[0,686,0,5350,0],"quality":"Less is better"}]],["Mismatches",[{"metricName":"# mismatches","isMain":false,"values":[2320,2414,1988,2014,2251],"quality":"Less is better"},{"metricName":"# indels","isMain":false,"values":[275,504,112,219,122],"quality":"Less is better"},{"metricName":"Indels length","isMain":false,"values":[10507,28042,428,9171,310],"quality":"Less is better"},{"metricName":"# mismatches per 100 kbp","isMain":true,"values":["50.73","52.97","43.50","44.11","48.97"],"quality":"Less is better"},{"metricName":"# indels per 100 kbp","isMain":true,"values":["6.01","11.06","2.45","4.80","2.65"],"quality":"Less is better"},{"metricName":" # indels (<= 5 bp)","isMain":false,"values":[105,125,99,104,115],"quality":"Less is better"},{"metricName":" # indels (> 5 bp)","isMain":false,"values":[170,379,13,115,7],"quality":"Less is better"},{"metricName":"# N's","isMain":false,"values":[20287,46736,0,53920,0],"quality":"Less is better"},{"metricName":"# N's per 100 kbp","isMain":true,"values":["441.80","1012.61","0.00","1160.89","0.00"],"quality":"Less is better"}]],["Statistics without reference",[{"metricName":"# contigs","isMain":true,"values":[204,345,831,281,157],"quality":"Equal"},{"metricName":"# contigs (>= 0 bp)","isMain":false,"values":[204,345,2312,1762,157],"quality":"Equal"},{"metricName":"# contigs (>= 1000 bp)","isMain":false,"values":[204,345,757,207,149],"quality":"Equal"},{"metricName":"# contigs (>= 5000 bp)","isMain":false,"values":[150,230,343,142,118],"quality":"Equal"},{"metricName":"# contigs (>= 10000 bp)","isMain":false,"values":[102,150,122,110,92],"quality":"Equal"},{"metricName":"# contigs (>= 25000 bp)","isMain":false,"values":[53,49,5,56,51],"quality":"Equal"},{"metricName":"# contigs (>= 50000 bp)","isMain":false,"values":[26,14,0,27,30],"quality":"Equal"},{"metricName":"Largest contig","isMain":true,"values":[171927,112538,31311,142002,219320],"quality":"More is better"},{"metricName":"Total length","isMain":true,"values":[4591890,4615405,4589773,4644726,4615776],"quality":"More is better"},{"metricName":"Total length (>= 0 bp)","isMain":false,"values":[4591890,4615405,4840479,4895432,4615776],"quality":"More is better"},{"metricName":"Total length (>= 1000 bp)","isMain":true,"values":[4591890,4615405,4535008,4589961,4610355],"quality":"More is better"},{"metricName":"Total length (>= 5000 bp)","isMain":false,"values":[4432051,4283597,3408994,4439435,4528375],"quality":"More is better"},{"metricName":"Total length (>= 10000 bp)","isMain":true,"values":[4069013,3693899,1860589,4202706,4329380],"quality":"More is better"},{"metricName":"Total length (>= 25000 bp)","isMain":false,"values":[3298274,2130957,139999,3306019,3656603],"quality":"More is better"},{"metricName":"Total length (>= 50000 bp)","isMain":true,"values":[2372569,939969,0,2225645,2881707],"quality":"More is better"},{"metricName":"N50","isMain":false,"values":[55329,22892,8046,49269,63511],"quality":"More is better"},{"metricName":"N75","isMain":false,"values":[21632,11925,4932,22851,31126],"quality":"More is better"},{"metricName":"L50","isMain":false,"values":[25,57,171,29,20],"quality":"Less is better"},{"metricName":"L75","isMain":false,"values":[60,129,350,64,45],"quality":"Less is better"},{"metricName":"GC (%)","isMain":false,"values":["31.99","31.99","31.98","31.99","32.01"],"quality":"Equal"}]],["K-mer-based statistics",[]],["Predicted genes",[]],["Similarity statistics",[{"metricName":"# similar correct contigs","isMain":false,"values":[3,4,6,6,5],"quality":"Equal"},{"metricName":"# similar misassembled blocks","isMain":false,"values":[1,0,1,1,1],"quality":"Equal"}]],["Reference statistics",[{"metricName":"Reference length","isMain":false,"values":[4799920,4799920,4799920,4799920,4799920],"quality":"Equal"},{"metricName":"Reference fragments","isMain":false,"values":[1,1,1,1,1],"quality":"Equal"},{"metricName":"Reference GC (%)","isMain":false,"values":["31.97","31.97","31.97","31.97","31.97"],"quality":"Equal"}]]],"minContig":500,"date":"07 August 2018, Tuesday, 16:41:18","assembliesWithNs":null,"assembliesNames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"order":[0,1,2,3,4]}
    {{ qualities }}
    {{ mainMetrics }}
    {"lists_of_lengths":[[171927,171261,146782,130087,125923,120757,110113,100683,94587,94326,86559,86505,83692,78500,75851,74583,70983,69062,66259,66128,63686,59796,58473,58279,55329,52438,49739,47648,44609,42412,42127,41162,40514,40050,37248,36673,34011,33993,31729,30476,30272,30167,30162,30023,30000,29444,28762,28641,28479,28336,27007,26322,25699,24808,23206,22690,22468,22069,21662,21632,21436,20887,20691,20167,19044,18769,18397,18208,17404,16740,16640,16588,16151,15873,15185,14849,14790,14541,14377,14297,14176,14133,14100,14034,13790,13516,13516,12787,12341,12149,12093,11710,11660,11610,11024,11005,10975,10850,10675,10514,10496,10016,9820,9783,9780,9725,9674,9427,9365,9088,9085,8979,8928,8926,8670,8533,8506,8457,8369,8117,7922,7910,7875,7860,7780,7744,7497,7364,7306,7288,7205,7132,7089,7086,7001,6730,6667,6655,6571,6279,6076,6006,5910,5484,5382,5341,5226,5209,5157,5054,4973,4966,4934,4899,4846,4802,4765,4673,4479,4422,4310,4269,4161,4009,3995,3986,3941,3879,3718,3610,3494,3434,3409,3304,3282,3252,3172,3087,2979,2836,2804,2599,2564,2473,2198,2129,1956,1897,1860,1791,1692,1659,1508,1467,1464,1388,1203,1150,1043,1041,1025,1024,1014,1004],[112538,82998,77676,72015,69478,65543,64723,63599,60381,58557,58117,52718,51448,50178,48997,48088,45969,43575,42960,41595,41568,41325,39132,38117,36845,36746,36064,35754,34300,33662,31818,31673,31600,30135,29812,29565,29327,29199,28860,28720,28684,28549,28208,27865,27494,27066,26936,25435,25345,24827,24698,24543,24340,23740,23728,23696,22892,22752,22712,21987,21117,20665,20130,20118,20096,19974,19812,19760,19041,19034,18953,18810,17846,17633,17561,17455,17394,17079,16773,16772,16735,16731,16621,16604,16466,16366,16158,16123,16038,15890,15875,15747,15440,15291,15188,15174,15056,14722,14503,14480,14409,14163,14102,14045,13884,13789,13784,13759,13741,13703,13378,13372,13337,13269,13203,13180,13166,13006,12846,12825,12668,12657,12591,12354,12291,12195,12135,12082,11925,11815,11805,11675,11651,11437,11345,11266,11251,11247,11194,11122,10891,10626,10622,10520,10442,10356,10315,10292,10037,10028,9972,9870,9816,9791,9655,9595,9511,9382,9225,9208,9208,9172,9120,9076,9003,8992,8924,8866,8849,8844,8797,8736,8642,8610,8585,8565,8514,8407,8357,8249,8194,7948,7760,7710,7602,7467,7465,7350,7298,7133,7111,6980,6971,6966,6950,6895,6824,6755,6628,6573,6535,6475,6451,6405,6350,6339,6332,6276,6186,6174,6087,6061,6043,5956,5866,5785,5755,5708,5640,5635,5373,5252,5215,5209,5166,5134,5065,5048,5038,5018,4862,4838,4838,4806,4765,4750,4746,4744,4729,4714,4689,4685,4579,4525,4478,4461,4422,4416,4335,4315,4174,4020,3997,3986,3948,3848,3846,3748,3729,3718,3709,3689,3688,3629,3585,3522,3448,3442,3435,3255,3252,3239,3219,3198,3105,3083,3064,3013,2981,2965,2962,2941,2876,2873,2866,2862,2848,2843,2812,2768,2715,2684,2676,2672,2671,2668,2612,2593,2579,2567,2564,2541,2505,2480,2473,2442,2280,2261,2246,2217,2203,2190,2188,2153,2129,2092,1970,1803,1769,1754,1730,1683,1654,1634,1622,1613,1546,1481,1449,1408,1397,1360,1359,1359,1354,1322,1310,1223,1222,1172,1156,1071,1050,1041,1012],[31311,28101,27448,27046,26093,24310,24297,24220,23745,23680,22641,22150,21930,21372,20345,20142,20131,20049,19923,19844,19768,19297,19295,19282,19022,18753,18742,18118,17581,17530,17483,17435,17339,17294,17148,16655,16621,16573,16268,16091,15793,15745,15594,15551,15503,15375,15206,15160,15151,14834,14796,14651,14619,14587,14566,14333,14183,14159,14101,14021,13980,13907,13870,13750,13657,13655,13434,13377,13212,13207,13185,13097,13047,13008,12918,12871,12848,12782,12642,12638,12411,12327,12201,12151,12143,12104,12057,12052,11913,11908,11852,11820,11813,11780,11749,11708,11691,11622,11513,11423,11391,11282,11259,11253,11085,10804,10777,10751,10727,10720,10687,10627,10577,10431,10397,10345,10301,10264,10262,10236,10082,10007,9923,9886,9822,9722,9677,9639,9637,9597,9590,9557,9555,9528,9499,9487,9387,9204,9182,9178,9051,8854,8822,8819,8780,8747,8716,8679,8672,8667,8643,8643,8624,8588,8583,8581,8490,8458,8434,8433,8388,8317,8293,8275,8223,8187,8186,8160,8103,8057,8046,8044,8025,7952,7930,7927,7903,7880,7879,7876,7871,7869,7862,7853,7843,7841,7835,7832,7757,7744,7736,7699,7681,7643,7609,7586,7560,7552,7548,7492,7491,7483,7458,7449,7417,7385,7371,7366,7349,7338,7333,7317,7309,7282,7275,7274,7223,7189,7163,7133,7127,7109,7047,7027,7001,7001,6969,6965,6903,6896,6873,6852,6830,6782,6772,6760,6752,6710,6682,6674,6665,6659,6659,6632,6599,6576,6572,6570,6540,6530,6500,6500,6492,6470,6464,6458,6456,6449,6419,6412,6392,6340,6327,6322,6308,6305,6297,6274,6254,6244,6244,6207,6181,6136,6116,6070,6068,6055,6041,6033,6026,6012,5947,5939,5920,5918,5894,5891,5881,5880,5870,5854,5852,5843,5828,5814,5805,5799,5793,5790,5786,5777,5725,5708,5662,5645,5624,5621,5528,5520,5514,5459,5457,5448,5423,5409,5407,5405,5393,5392,5376,5362,5331,5325,5317,5289,5288,5270,5251,5241,5217,5154,5152,5147,5147,5109,5090,5084,5074,5067,5053,5008,5003,4996,4973,4973,4963,4943,4939,4932,4929,4917,4903,4881,4849,4845,4843,4826,4786,4783,4775,4767,4758,4714,4711,4692,4676,4665,4662,4652,4651,4611,4585,4571,4569,4537,4522,4502,4502,4501,4500,4486,4463,4454,4435,4435,4420,4410,4405,4401,4382,4375,4358,4349,4330,4328,4328,4321,4286,4281,4280,4279,4276,4266,4261,4253,4243,4238,4196,4187,4178,4155,4150,4134,4124,4110,4105,4105,4092,4086,4061,4053,4053,4031,4022,4014,4008,4006,4002,3994,3993,3987,3968,3956,3950,3949,3948,3934,3916,3885,3860,3820,3795,3786,3742,3737,3731,3731,3715,3698,3698,3688,3674,3670,3669,3662,3649,3628,3581,3565,3563,3525,3517,3485,3473,3470,3452,3449,3423,3418,3398,3387,3385,3381,3381,3371,3360,3360,3348,3348,3345,3338,3292,3291,3285,3264,3262,3257,3245,3235,3224,3217,3212,3198,3196,3188,3167,3126,3124,3122,3122,3105,3098,3083,3079,3072,3066,3064,3045,3038,3027,3019,2995,2980,2976,2972,2966,2950,2948,2936,2925,2909,2887,2882,2872,2864,2850,2850,2836,2825,2808,2804,2802,2742,2734,2696,2683,2682,2652,2646,2635,2634,2611,2595,2594,2582,2572,2570,2569,2546,2544,2542,2520,2516,2503,2495,2481,2473,2447,2420,2418,2391,2389,2361,2352,2348,2343,2342,2330,2304,2277,2277,2273,2264,2259,2257,2252,2229,2204,2200,2175,2168,2151,2149,2148,2141,2139,2134,2131,2125,2122,2112,2104,2080,2076,2063,2045,2026,2026,2019,2011,2003,2003,2003,1996,1979,1969,1964,1959,1959,1953,1950,1943,1918,1910,1897,1882,1877,1875,1865,1859,1856,1851,1847,1841,1838,1832,1798,1798,1795,1791,1786,1785,1785,1783,1779,1779,1779,1777,1773,1761,1753,1751,1739,1739,1725,1724,1718,1706,1704,1690,1672,1665,1662,1660,1660,1654,1652,1643,1639,1629,1628,1624,1622,1621,1613,1608,1606,1594,1579,1572,1566,1565,1558,1552,1531,1505,1487,1480,1467,1462,1456,1454,1453,1446,1444,1433,1431,1428,1413,1409,1406,1404,1399,1398,1397,1390,1383,1382,1377,1370,1370,1368,1366,1364,1350,1342,1314,1305,1296,1295,1287,1280,1262,1259,1247,1245,1227,1225,1215,1214,1213,1208,1207,1197,1192,1191,1178,1169,1165,1156,1155,1151,1151,1150,1133,1132,1131,1129,1129,1116,1115,1113,1097,1093,1088,1077,1075,1072,1061,1054,1047,1042,1028,1017,1015,1006,999,996,989,983,980,980,980,978,966,959,938,932,931,929,913,909,893,892,879,873,848,840,839,821,820,820,808,803,780,771,751,743,738,736,734,725,720,713,696,694,693,688,688,687,684,678,674,668,667,665,639,637,636,617,612,608,601,595,572,571,569,567,563,556,550,549,546,546,543,531,524,517,516,509],[142002,140662,127285,117040,105317,103454,103373,102123,93568,91839,86382,80943,79621,79082,75358,68666,67221,61017,59515,59353,58500,56256,54525,54282,53628,52671,51962,49921,49269,46027,45461,44267,42997,42975,42825,42333,40871,40177,39763,39707,39340,36234,35960,35354,35098,34659,32658,32089,31943,31620,31299,29416,28791,27094,26219,26007,24953,24791,24346,24062,23950,23365,23326,22851,22150,21630,21459,21372,20560,20349,20334,20049,19861,18961,18318,18220,18086,17485,17358,17263,17170,17013,16710,16624,15988,14949,14183,13917,13557,13551,13377,12871,12782,12642,12612,12507,12473,12307,12218,12039,12004,11900,11654,11569,11327,11318,11172,10771,10301,10082,9910,9722,9448,9182,9178,8583,8581,8402,8293,8165,7899,7879,7586,7499,7492,7449,7374,7275,7001,6903,6852,6599,6492,6412,6297,5894,5881,5843,5805,5799,5783,5251,4939,4711,4665,4652,4502,4288,4114,4110,4006,3885,3670,3649,3381,3188,3148,3124,3122,3079,3072,3064,3063,2976,2938,2872,2825,2652,2473,2420,2391,2141,2131,2080,2011,1996,1959,1798,1773,1724,1606,1480,1453,1433,1382,1368,1295,1280,1247,1169,1150,1132,1131,1129,1097,1088,1077,1075,1072,1061,1054,1047,1042,1028,1017,1015,1006,999,996,989,983,980,980,980,978,966,959,938,932,931,929,913,909,893,892,879,873,848,840,839,821,820,820,808,803,780,771,751,743,738,736,734,725,720,713,696,694,693,688,688,687,684,678,674,668,667,665,639,637,636,617,612,608,601,595,572,571,569,567,563,556,550,549,546,546,543,531,524,517,516,509],[219320,208731,202169,170658,164670,130131,115499,106643,102931,102164,94836,93957,92055,86732,83308,79444,66932,66137,65866,63511,63449,62173,60070,59946,56615,54809,53479,52147,52146,51179,48481,48113,44418,43991,42868,42436,41989,41958,36584,36558,35544,35301,33989,33819,31126,31110,30573,30391,28958,28658,28031,24757,24051,23997,23201,22862,21666,21347,20094,19934,19928,19577,18334,17247,17186,16985,16955,16926,16739,16683,16508,16158,16014,15555,15339,14958,14778,14322,13963,13696,13416,13159,12760,12170,12031,11902,11798,11424,11315,11196,11187,10659,9705,9209,9117,9054,8972,8683,8418,8396,8237,8168,8037,7640,7600,7415,7316,7314,7293,7000,6977,6912,6887,6553,6444,6097,5991,5560,4780,4575,4470,4428,4370,4268,3610,3448,3411,3346,3269,3031,2933,2890,2627,2555,2466,2266,2107,1980,1974,1660,1590,1412,1393,1371,1304,1162,1152,1089,1043,831,775,754,702,691,590,570,508]],"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"]}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"assemblies_lengths":[4591890,4615405,4589773,4644726,4615776]}
    {"reflen":[4799920]}
    {"tickX":1}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"coord_x":[[0.0,1e-10,3.744144567923012,3.744144568023012,7.473785304090472,7.473785304190472,10.670334001903356,10.670334002003356,13.503306917195316,13.503306917295316,16.24559821772734,16.24559821782734,18.87538682329063,18.875386823390627,21.27337545106699,21.273375451166988,23.46600201659883,23.466002016698827,25.525872788764538,25.525872788864536,27.580059626863886,27.580059626963884,29.46510042705727,29.465100427157267,31.348965240892095,31.348965240992094,33.1715698764561,33.1715698765561,34.881105601397245,34.88110560149725,36.532952662193566,36.53295266229357,38.15718582108892,38.157185821188925,39.703019889413724,39.703019889513726,41.20701933190908,41.20701933200908,42.6499763713852,42.6499763714852,44.09008055506556,44.090080555165564,45.4770040223089,45.4770040224089,46.77921291668572,46.779212916785724,48.05261014527787,48.05261014537787,49.32178253398927,49.32178253408927,50.52671122348314,50.52671122358314,51.66868108774383,51.66868108784383,52.75187341160176,52.75187341170176,53.7895289303533,53.7895289304533,54.7610025501482,54.7610025502482,55.6846309471699,55.6846309472699,56.60205274952144,56.60205274962144,57.49845924009504,57.49845924019504,58.38075389436594,58.38075389446594,59.2529437769633,59.2529437770633,60.06411303406658,60.06411303416658,60.86276021420374,60.86276021430374,61.603435622369005,61.60343562246901,62.34371903508141,62.343719035181415,63.03469813083502,63.03469813093502,63.69838998756504,63.69838998766504,64.35763922916271,64.35763922926272,65.01460183061876,65.01460183071876,65.67145554444902,65.67145554454902,66.32528218228224,66.32528218238224,66.97860793703681,66.97860793713681,67.61982538780327,67.61982538790328,68.24619056641166,68.24619056651166,68.86992066447584,68.86992066457584,69.49012280346437,69.49012280356438,70.10721075635523,70.10721075645523,70.69535637831045,70.69535637841045,71.26858439553212,71.26858439563212,71.82824501458005,71.82824501468005,72.36850185871177,72.36850185881177,72.8738711075396,72.8738711076396,73.36800315338564,73.36800315348565,73.85730058864651,73.85730058874651,74.33790879136913,74.33790879146913,74.80965354135225,74.80965354145225,75.28074496558062,75.28074496568063,75.74756799487793,75.74756799497793,76.20243516286322,76.20243516296323,76.65303393591745,76.65303393601745,77.09222128578864,77.09222128588864,77.50695247490685,77.50695247500686,77.91569484460646,77.91569484470647,78.31633597494714,78.31633597504714,78.71286115303285,78.71286115313285,79.09187720089113,79.09187720099114,79.4564329720442,79.4564329721442,79.8188109906814,79.8188109907814,80.18005657801037,80.18005657811037,80.53178538684507,80.53178538694507,80.87746004368572,80.87746004378572,81.20815176321733,81.20815176331733,81.53152623429568,81.53152623439568,81.85361583138969,81.85361583148969,82.17028282471924,82.17028282481924,82.48337830392279,82.48337830402279,82.79473158111367,82.79473158121367,83.10344977776036,83.10344977786036,83.41123154082524,83.41123154092524,83.7182946455599,83.7182946456599,84.02392043363407,84.02392043373408,84.3242325055696,84.3242325056696,84.61857753561169,84.6185775357117,85.19139177985535,85.19139177995535,85.46014821783623,85.46014821793624,85.72472337098668,85.72472337108668,85.98807898272824,85.98807898282824,86.24309380233412,86.24309380243412,86.49701974568207,86.49701974578207,86.74985681277208,86.74985681287208,86.98993225011924,86.98993225021924,87.22959391448838,87.22959391458838,87.46860225310276,87.46860225320276,87.70488840107232,87.70488840117233,87.93736348213916,87.93736348223916,88.16633238165548,88.16633238175548,88.39490928571895,88.39490928581895,88.61303297770635,88.61303297780636,88.82688827476268,88.82688827486268,89.03993780338814,89.03993780348814,89.25292199943814,89.25292199953815,89.46470843160442,89.46470843170442,89.67538420998761,89.67538421008761,89.88068093965666,89.88068093975666,90.08462746276588,90.08462746286588,90.2825416114062,90.2825416115062,90.48039042747104,90.48039042757104,90.67593082586909,90.67593082596909,90.87036057048405,90.87036057058405,91.06474676004869,91.0647467601487,91.25355790317276,91.25355790327276,91.43938552535013,91.43938552545013,91.62462515434821,91.62462515444821,91.80879768461352,91.80879768471353,91.9910537926649,91.9910537927649,92.16782196437633,92.16782196447633,92.34034351868185,92.34034351878185,92.51260374268547,92.51260374278547,92.68410175330855,92.68410175340856,92.85527310105425,92.85527310115425,93.02470224678727,93.02470224688727,93.19334740161459,93.19334740171459,93.35661350772776,93.35661350782776,93.51698320299485,93.51698320309485,93.67608980180275,93.67608980190275,93.83480440515778,93.83480440525778,93.99171147392468,93.99171147402468,94.147028783355,94.147028783455,94.30140965920351,94.30140965930352,94.45572520247654,94.45572520257655,94.6081896561111,94.6081896562111,94.7547524004277,94.7547524005277,94.89994316065933,94.89994316075934,95.04487259058907,95.04487259068907,95.18797270840547,95.18797270850547,95.3247137888756,95.3247137889756,95.45703403173856,95.45703403183856,95.58782984784042,95.58782984794043,95.71653502152708,95.71653502162708,95.83596296949622,95.83596296959622,95.95316960989919,95.9531696099992,96.06948337177066,96.06948337187066,96.18329271824891,96.18329271834891,96.29673184679946,96.29673184689946,96.40903854404178,96.40903854414178,96.51910215619277,96.51910215629277,96.62740178880591,96.62740178890591,96.73554897874295,96.73554897884296,96.84299928787493,96.84299928797493,96.94968738362635,96.94968738372636,97.05522127054438,97.05522127064438,97.15979694635543,97.15979694645543,97.26356685373561,97.26356685383561,97.36533322880122,97.36533322890122,97.46287476398606,97.46287476408607,97.55917498023689,97.55917498033689,97.65303611366997,97.65303611376997,97.74600436857155,97.74600436867155,97.836620650756,97.836620650856,97.92392674911638,97.92392674921638,98.01092796212453,98.01092796222453,98.09773317740625,98.09773317750626,98.18355840405584,98.18355840415585,98.26803342414561,98.26803342424562,98.34900226268486,98.34900226278486,98.427619128507,98.427619128607,98.50370980141075,98.50370980151075,98.57849382280499,98.57849382290499,98.65273340607027,98.65273340617027,98.7246863491939,98.7246863492939,98.79616018676406,98.79616018686406,98.86698069857945,98.86698069867946,98.93605900838217,98.93605900848218,99.00328622854641,99.00328622864642,99.06816147599355,99.06816147609355,99.129922537343,99.12992253744301,99.19098671788741,99.19098671798741,99.24758650577431,99.24758650587431,99.30342408028066,99.30342408038067,99.35727989999761,99.35727990009761,99.40514690029596,99.40514690039596,99.45151125135837,99.45151125145837,99.49410809056837,99.49410809066838,99.53542005579402,99.53542005589402,99.5759262525888,99.5759262526888,99.61492980014765,99.61492980024765,99.65177737271581,99.65177737281581,99.68790628695373,99.68790628705374,99.72074679489273,99.72074679499273,99.75269442430023,99.75269442440023,99.78457672113225,99.78457672123226,99.81480392605224,99.81480392615224,99.84100228881789,99.84100228891789,99.86604644275015,99.86604644285015,99.88876040149046,99.88876040159046,99.91143080518044,99.91143080528045,99.93375276846788,99.93375276856789,99.95605295423017,99.95605295433018,99.97813536474088,99.97813536484088,100.0,100.0000000001],[0.0,1e-10,2.4383125641195083,2.4383125642195083,4.236594621707088,4.236594621807088,5.919567188578251,5.919567188678251,7.479885297173271,7.479885297273271,8.98523531521069,8.98523531531069,10.405327376470755,10.405327376570755,11.807652849533248,11.807652849633248,13.18562509682249,13.18562509692249,14.493874318721758,14.493874318821758,15.762603715166925,15.762603715266925,17.02179982038413,17.021799820484127,18.16401810892002,18.164018109020017,19.278719852320652,19.27871985242065,20.365905050586026,20.365905050686024,21.427502028532707,21.427502028632706,22.469404093465254,22.469404093565252,23.465394694506767,23.465394694606765,24.409515524639765,24.409515524739763,25.34031141362459,25.34031141372459,26.241532433231754,26.241532433331752,27.142168455422656,27.142168455522654,28.037539500867204,28.037539500967203,28.885395756168744,28.885395756268743,29.71126044193305,29.711260442033048,30.50956524942015,30.509565249520147,31.30572506638096,31.305725066480957,32.08710828193842,32.08710828203842,32.861774860494364,32.861774860594366,33.604938244856086,33.60493824495609,34.334278356937254,34.334278357037256,35.02366531214487,35.02366531224487,35.70991061456145,35.70991061466145,36.39457425729703,36.39457425739703,37.047496373557685,37.04749637365769,37.693420187394175,37.693420187494176,38.33399235820042,38.33399235830042,38.969407885115174,38.969407885215176,39.60205009094543,39.602050091045434,40.22734732921596,40.22734732931596,40.84961124755032,40.84961124765032,41.47109516932967,41.471095169429674,42.08965410402771,42.08965410412771,42.700824738024075,42.700824738124076,43.304563738176824,43.304563738276826,43.900264440498724,43.900264440598725,44.48669185044433,44.48669185054433,45.07030260616349,45.07030260626349,45.62139183885271,45.62139183895271,46.1705310801544,46.1705310802544,46.70844703769225,46.708447037792254,47.24356800757463,47.24356800767463,47.77533065895626,47.77533065905626,48.30269499643043,48.302694996530434,48.817059391321024,48.817059391421026,49.33116378735994,49.33116378745994,49.84457485312773,49.84457485322773,50.340565995833515,50.34056599593352,50.83352381860313,50.833523818703135,51.32561497853384,51.325614978633844,51.80199787450939,51.80199787460939,52.25953085373873,52.25953085383873,52.70727054288844,52.70727054298844,53.14341861656778,53.14341861666778,53.579306691395445,53.57930669149545,54.01471810166172,54.01471810176172,54.44748619026932,54.447486190369325,54.876744294379364,54.876744294479366,55.30487573679883,55.30487573689883,55.71742891468896,55.71742891478896,56.12983042658228,56.12983042668228,56.54047694622682,56.54047694632682,56.94802514622227,56.94802514632227,57.334686771800094,57.334686771900095,57.716733417760736,57.71673341786074,58.09722007061136,58.09722007071136,58.47541006693887,58.47541006703887,58.85227840243706,58.85227840253706,59.22232176807886,59.22232176817886,59.58573516300303,59.58573516310303,59.94912689135623,59.94912689145623,60.31171695658344,60.31171695668344,60.674220355526764,60.674220355626765,61.0343404316631,61.0343404317631,61.39409217609289,61.39409217619289,61.75085393372846,61.75085393382846,62.10544903426676,62.105449034366764,62.45553748804276,62.45553748814276,62.804867611834716,62.80486761193472,63.15235607709399,63.15235607719399,63.49663788984932,63.49663788994932,63.84059470404006,63.84059470414006,64.1817781971463,64.1817781972463,64.51631005296393,64.51631005306393,64.84761358970664,64.84761358980664,65.17668546963918,65.17668546973918,65.50545401757809,65.50545401767809,65.83166591014223,65.83166591024224,66.15064116800151,66.15064116810152,66.46487144681778,66.46487144691778,66.77860339450167,66.77860339460167,67.09079701564652,67.09079701574652,67.39766066033208,67.39766066043208,67.70320264418832,67.70320264428833,68.00750963349913,68.00750963359913,68.30832830488332,68.30832830498332,68.60708865202513,68.60708865212513,68.90574066631206,68.90574066641206,69.20385101632468,69.20385101642468,69.50157136805979,69.50157136815979,69.79846839009794,69.79846839019794,70.08832377657,70.08832377667,70.3780491636162,70.3780491637162,70.66701622067836,70.66701622077836,70.95450995091439,70.95450995101439,71.24057368746621,71.24057368756621,71.52613909288567,71.52613909298567,71.81140116631151,71.81140116641151,72.09319658838173,72.09319658848173,72.37152535909632,72.37152535919633,72.6493991318205,72.6493991319205,72.92387125290196,72.92387125300196,73.19810504170273,73.19810504180273,73.4709088368193,73.4709088369193,73.73857765461536,73.73857765471536,74.00488147844014,74.00488147854014,74.26910531145154,74.26910531155154,74.5320291502046,74.5320291503046,74.79380466069608,74.79380466079608,75.05217851954487,75.05217851964487,75.30816905558667,75.30816905568668,75.56394292591874,75.56394292601874,75.81690014202437,75.81690014212437,76.06933736042666,76.06933736052666,76.3171379326408,76.3171379327408,76.56294518032546,76.56294518042546,76.80704076890328,76.80704076900328,77.0508113589165,77.0508113590165,77.29449528264584,77.29449528274584,77.53703087811363,77.53703087821363,77.77800648047138,77.77800648057138,78.01397710493445,78.01397710503446,78.24420608808978,78.24420608818978,78.4743484049612,78.4743484050612,78.70228073159343,78.70228073169343,78.92852306568979,78.92852306578979,79.1529020746825,79.1529020747825,79.37639275426534,79.37639275436534,79.5993851027158,79.5993851028158,79.81685247556824,79.81685247566824,80.03412484928191,80.03412484938191,80.25018389502112,80.25018389512113,80.46403295052113,80.46403295062113,80.67671201118861,80.67671201128861,80.88884940758179,80.88884940768179,81.09804015032267,81.09804015042268,81.3059308988052,81.3059308989052,81.51200165532602,81.51200165542602,81.71527742419137,81.71527742429137,81.91515154141402,81.91515154151402,82.11465732693014,82.11465732703014,82.51288890140735,82.51288890150735,82.71048802867787,82.71048802877787,82.9071338268256,82.9071338269256,83.10219796529232,83.10219796539232,83.29702377147834,83.29702377157834,83.49037625083822,83.49037625093823,83.6824720690817,83.6824720691817,83.87419955561863,83.87419955571863,84.0658187093007,84.0658187094007,84.25641953414706,84.25641953424706,84.44569869816408,84.44569869826408,84.63294120450968,84.63294120460968,84.81949038058416,84.81949038068416,85.00549789238431,85.00549789248431,85.19107207276501,85.19107207286501,85.3755412580261,85.3755412581261,85.55769212019314,85.55769212029314,85.73875965381153,85.73875965391153,85.91748719776487,85.91748719786487,86.09502308031473,86.09502308041473,86.26722898640531,86.26722898650532,86.43536157715303,86.43536157725303,86.60241083935213,86.60241083945213,86.76712011188617,86.76712011198617,86.92890439733891,86.92890439743891,87.0906453496497,87.0906453497497,87.24989464629864,87.24989464639864,87.408017281257,87.408017281357,87.56256493200489,87.56256493210489,87.71663591819136,87.71663591829136,87.86786858358042,87.86786858368042,88.01890624983074,88.01890624993074,88.16983558322617,88.16983558332618,88.32041825148606,88.32041825158606,88.46980925834244,88.46980925844244,88.61766193865977,88.61766193875977,88.76401962557999,88.76401962567999,88.90762565798667,88.90762565808667,89.05004002898987,89.05004002908987,89.19163107029611,89.19163107039611,89.33192211734398,89.33192211744398,89.47169316668851,89.47169316678851,89.6104675537683,89.6104675538683,89.7480502794446,89.7480502795446,89.88539467284019,89.8853946729402,90.02258740023898,90.02258740033898,90.1585667996633,90.1585667997633,90.29259620770009,90.29259620780009,90.42636561688519,90.4263656169852,90.55825003439568,90.55825003449569,90.68957112106088,90.68957112116088,90.82050220944858,90.82050220954858,90.94954830616165,90.94954830626165,91.07664441148718,91.07664441158718,91.20198552456394,91.20198552466394,91.32667664051151,91.32667664061151,91.45034942762337,91.45034942772337,91.57254888790908,91.57254888800908,91.69464001533993,91.69464001543993,91.81105450117596,91.81105450127596,91.92484733192428,91.92484733202429,92.03783849954662,92.03783849964663,92.15069966774314,92.15069966784314,92.26262917338782,92.26262917348782,92.37386534876137,92.37386534886137,92.48360653073782,92.48360653083782,92.59297938100774,92.59297938110774,92.70213556556791,92.70213556566792,92.81085841870865,92.81085841880865,92.91620128677765,92.91620128687765,93.0210241571433,93.0210241572433,93.22997656760349,93.22997656770349,93.33321777828814,93.33321777838815,93.43613399040821,93.43613399050821,93.53896353624438,93.53896353634438,93.64174974893861,93.64174974903861,93.74421096306824,93.74421096316824,93.8463471786333,93.8463471787333,93.94794172992403,93.94794173002403,94.04944961493086,94.04944961503087,94.1486608434146,94.1486608435146,94.24670207706582,94.24670207716582,94.34372498188134,94.34372498198134,94.4403795549903,94.4403795550903,94.53618913183134,94.53618913193134,94.63186870924653,94.63186870934653,94.72579329441295,94.72579329451295,94.81928454815991,94.81928454825992,94.90972081539974,94.90972081549974,94.99682043070976,94.99682043080976,95.08342171488742,95.08342171498742,95.1697846667844,95.1697846668844,95.2553242889844,95.2553242890844,95.33869725408712,95.33869725418712,95.42202688604792,95.42202688614792,95.5032331940534,95.5032331941534,95.58402783721039,95.58402783731039,95.66458414808667,95.66458414818668,95.74494545982422,95.74494545992422,95.82487344014231,95.82487344024231,95.90477975388941,95.90477975398942,95.98340773994914,95.98340774004915,96.06108239688608,96.06108239698608,96.13739205985173,96.13739205995174,96.21209839656541,96.21209839666541,96.28667473385326,96.28667473395326,96.36109940514429,96.36109940524429,96.43162409366025,96.43162409376025,96.50208378246329,96.50208378256329,96.5722618058437,96.5722618059437,96.64200649780463,96.64200649790463,96.71129619177515,96.71129619187515,96.77857089464521,96.77857089474522,96.84536893295387,96.84536893305388,96.91175530641407,96.91175530651407,96.97703668475464,96.97703668485464,97.04162473282409,97.04162473292409,97.10586611575799,97.10586611585799,97.17004249897896,97.17004249907896,97.23376388420951,97.23376388430951,97.29607694232683,97.29607694242684,97.35832500073124,97.35832500083124,97.42042139313885,97.42042139323885,97.48243111926256,97.48243111936256,97.54413751339266,97.54413751349266,97.60573557466788,97.60573557476788,97.66666197224296,97.66666197234296,97.72663504069524,97.72663504079524,97.78545978088597,97.78545978098597,97.84361285737654,97.84361285747654,97.90159260129934,97.90159260139934,97.95948567893825,97.95948567903825,98.01735709000619,98.01735709010619,98.0751635013612,98.0751635014612,98.13175658474175,98.13175658484175,98.18793800327381,98.18793800337382,98.24381608981227,98.24381608991227,98.29943417749905,98.29943417759905,98.35498726547291,98.35498726557292,98.4100420223144,98.4100420224144,98.46431678260087,98.46431678270088,98.51804987861304,98.51804987871304,98.57163130862838,98.57163130872839,98.62454107494358,98.62454107504358,98.67394085676122,98.67394085686122,98.72292897373036,98.72292897383036,98.77159209213492,98.77159209223493,98.81962687998129,98.81962688008129,98.86735833583401,98.86735833593401,98.9148081262641,98.91480812636411,98.96221458355225,98.96221458365225,99.00886271085636,99.00886271095636,99.05499084045712,99.05499084055712,99.1003173069319,99.1003173070319,99.14300045174801,99.14300045184801,99.18206527921168,99.18206527931169,99.2203934432623,99.2203934433623,99.25839660874831,99.25839660884832,99.29587977653098,99.29587977663098,99.33234461547795,99.33234461557795,99.3681811238667,99.3681811239667,99.403584300836,99.403584300936,99.43872747895364,99.43872747905364,99.47367565793252,99.47367565803252,99.50717217665623,99.50717217675623,99.53926036826671,99.53926036836671,99.57065522960607,99.57065522970608,99.60116176153555,99.60116176163555,99.63142996118434,99.63142996128434,99.66089649770713,99.66089649780713,99.69034136765896,99.69034136775896,99.74912277470774,99.74912277480774,99.77776598153358,99.77776598163358,99.80614918950775,99.80614918960775,99.8326474058073,99.8326474059073,99.85912395553586,99.85912395563587,99.8845171767158,99.8845171768158,99.90956373276018,99.90956373286018,99.93276863027188,99.93276863037188,99.95551852979315,99.95551852989315,99.97807343017568,99.97807343027569,100.0,100.0000000001],[0.0,1e-10,0.6821906007116256,0.6821906008116256,1.2944431020880554,1.2944431021880554,1.892468320328696,1.892468320428696,2.481734935475022,2.4817349355750222,3.0502379965196535,3.0502379966196536,3.579893820456916,3.579893820556916,4.109266405985656,4.109266406085656,4.636961348633146,4.636961348733146,5.154307195584618,5.154307195684618,5.6702368504934775,5.6702368505934775,6.163529220290415,6.163529220390415,6.6461238932731534,6.6461238933731535,7.123925300880893,7.123925300980893,7.589569244492048,7.589569244592048,8.032837353829917,8.032837353929917,8.471682586480856,8.471682586580856,8.910288155863046,8.910288155963046,9.347107144514554,9.347107144614554,9.781180899360383,9.781180899460383,10.213533436185187,10.213533436285188,10.644230117698632,10.644230117798632,11.064664853795602,11.064664853895602,11.4850560147528,11.4850560148528,11.905163937301474,11.905163937401474,12.319607091679698,12.319607091779698,12.72818938975849,12.72818938985849,13.136532024568535,13.136532024668535,13.531279215769494,13.531279215869494,13.914326481941481,13.914326482041481,14.296262582049264,14.296262582149264,14.67717466637239,14.67717466647239,15.057040947340969,15.057040947440969,15.434815621600459,15.434815621700459,15.811609855215062,15.811609855315062,16.185223103626257,16.185223103726255,16.54809508008348,16.54809508018348,16.91022627916457,16.910226279264567,17.271311674891113,17.27131167499111,17.625751861802314,17.625751861902312,17.976335648843637,17.976335648943635,18.32042674005882,18.32042674015882,18.663472027919465,18.663472028019463,19.003227392727265,19.003227392827263,19.342045892029955,19.342045892129953,19.679818587978097,19.679818588078096,20.01480247498079,20.01480247508079,20.346104262672686,20.346104262772684,20.67640382214981,20.676403822249807,21.006507293497958,21.006507293597956,21.329704105192132,21.32970410529213,21.65207298923062,21.65207298933062,21.971282675635592,21.97128267573559,22.2897951598042,22.289795159904198,22.607610441736444,22.607610441836442,22.924968184701072,22.92496818480107,23.237249423882183,23.23724942398218,23.54626252758034,23.546262527680337,23.854752729601223,23.85475272970122,24.1619792525687,24.161979252668697,24.467462769945268,24.467462770045266,24.772052996956493,24.77205299705649,25.075052731366018,25.075052731466016,25.377246325689747,25.377246325789745,25.67682541162711,25.67682541172711,25.974378253565046,25.974378253665044,26.271887520363208,26.271887520463206,26.564581734216485,26.564581734316484,26.85603405658624,26.856034056686237,27.143891429924746,27.143891430024745,27.431639865413825,27.431639865513823,27.718908974365398,27.718908974465396,28.004260777166976,28.004260777266975,28.288523201474234,28.288523201574233,28.571935910555926,28.571935910655924,28.853387738347845,28.853387738447843,29.133815550355106,29.133815550455104,29.41374224825498,29.41374224835498,29.692230966542354,29.692230966642352,29.96766942504564,29.967669425145637,30.24302073326938,30.243020733369377,30.513426263128917,30.513426263228915,30.782001637118,30.782001637218,31.047831777301404,31.047831777401402,31.31257253899049,31.31257253909049,31.577139000120486,31.577139000220484,31.84085574602491,31.84085574612491,32.10354847614468,32.10354847624468,32.366132268415015,32.36613226851502,32.62568758847115,32.625687588571154,32.885133970677856,32.88513397077786,33.14336024897092,33.14336024907092,33.40088932502762,33.40088932512762,33.658265888095116,33.65826588819512,33.914923461356366,33.91492346145637,34.17090561995114,34.170905620051144,34.42599448818057,34.42599448828057,34.68071296772193,34.68071296782193,34.93392810494114,34.93392810504114,35.18476839704273,35.18476839714273,35.43364780785455,35.43364780795455,35.681830016430006,35.68183001653001,35.92763737988785,35.92763737998785,36.17294362923831,36.17294362933831,36.41811915316945,36.41811915326945,36.65963436535968,36.65963436545968,36.895027270411845,36.89502727051185,37.12983191107708,37.129831911177085,37.36407007492527,37.364070075025275,37.59778533709619,37.59778533719619,37.831348086277906,37.83134808637791,38.06419184565337,38.06419184575337,38.29572835083565,38.295728350935654,38.526175477523616,38.52617547762362,38.75344161900817,38.75344161910817,38.9799669831166,38.9799669832166,39.205359393590925,39.20535939369093,39.42979315099026,39.42979315109026,39.65342076830379,39.65342076840379,39.87700481047756,39.87700481057756,40.10002237583427,40.10002237593427,40.319684655428496,40.3196846555285,40.537712867281236,40.53771286738124,40.753910923263525,40.75391092336353,40.96930283916002,40.969302839260024,41.183300350583785,41.18330035068379,41.39511910501892,41.39511910511892,41.60595741880917,41.60595741890917,41.81596780494373,41.815967805043734,42.025934615938525,42.025934616038526,42.23502992413786,42.235029924237864,42.443972719348,42.443972719448,42.65219652475188,42.65219652485188,42.86037675501599,42.86037675511599,43.06796872089317,43.06796872099317,43.27492884724364,43.274928847343645,43.48162752275548,43.48162752285548,43.686147441278685,43.68614744137869,43.88668023451269,43.88668023461269,44.08673370120919,44.08673370130919,44.286700017626146,44.28670001772615,44.48389931266753,44.483899312767534,44.67680645644131,44.676806456541314,44.869016397978726,44.86901639807873,45.06116097680648,45.06116097690648,45.252455840408665,45.25245584050867,45.4430317142046,45.4430317143046,45.63293217333406,45.632932173434064,45.82202649237773,45.82202649247773,46.01096829843219,46.01096829853219,46.199801166637215,46.19980116673722,46.388111133164976,46.38811113326498,46.764317102392646,46.76431710249265,46.95142875257665,46.951428752676655,47.13843146491123,47.13843146501123,47.32539060210603,47.325390602206035,47.51036707044118,47.51036707054118,47.694646336539954,47.694646336639956,47.878402700961466,47.87840270106147,48.062137277813086,48.06213727791309,48.24489141401982,48.24489141411982,48.42609863276463,48.42609863286463,48.60678294983216,48.60678294993216,48.787075090641736,48.78707509074174,48.96623427781723,48.96623427791723,49.14460911247681,49.14460911257681,49.322962159566494,49.322962159666496,49.500748729839145,49.50074872993915,49.67729340862827,49.677293408728275,49.85283585920262,49.85283585930262,50.028138646508225,50.02813864660823,50.20339785867406,50.20339785877406,50.37824310701205,50.37824310711205,50.551497862748334,50.551497862848336,50.72427329194712,50.72427329204712,50.896983358436245,50.89698335853625,51.0691705232481,51.0691705233481,51.24085657395257,51.24085657405257,51.41252083708715,51.41252083718715,51.584119737512076,51.58411973761208,51.75560970008756,51.75560970018756,51.92705608752328,51.927056087623285,52.098349961969795,52.0983499620698,52.269447748287334,52.269447748387336,52.44032765890601,52.44032765900601,52.61116399438491,52.61116399448491,52.78186960444449,52.78186960454449,52.95250985179441,52.95250985189441,53.12151603140286,53.121516031502864,53.290238972602786,53.29023897270279,53.458787613243615,53.45878761334362,53.62653011379866,53.62653011389866,53.79388043809574,53.79388043819574,53.960402834737145,53.96040283483715,54.126184454002406,54.12618445410241,54.29146495916029,54.29146495926029,54.456178987501126,54.45617898760113,54.62071871528287,54.62071871538287,54.785171292785066,54.78517129288507,54.94840376637363,54.94840376647363,55.11161445239231,55.11161445249231,55.274650837851894,55.274650837951896,55.43714253406432,55.43714253416432,55.59943814214777,55.59943814224777,55.761036547994856,55.76103654809486,55.92193775160558,55.921937751705585,56.0825339292379,56.0825339293379,56.24302116902078,56.24302116912078,56.40313802011559,56.40313802021559,56.56301520794165,56.563015208041655,56.72278345791829,56.72278345801829,56.88220310677674,56.882203106876744,57.0414484550761,57.0414484551761,57.20010553898853,57.20010553908853,57.35861010991175,57.35861011001175,57.517092893265094,57.517092893365096,57.67446451055422,57.674464510654225,57.83109535046722,57.831095350567225,57.98715971356317,57.987159713663175,58.14257044956254,58.14257044966254,58.297850460142584,58.297850460242586,58.45273829446467,58.452738294564675,58.606275299453806,58.60627529955381,58.759376553045215,58.759376553145216,58.91191132981958,58.91191132991958,59.21628368113194,59.21628368123194,59.3680341053904,59.3680341054904,59.518433700315896,59.5184337004159,59.668680782252196,59.6686807823522,59.8184267500811,59.818426750181104,59.9677151789424,59.9677151790424,60.116524281266194,60.116524281366196,60.26428758023545,60.26428758033545,60.41183300350584,60.41183300360584,60.55911697593759,60.55911697603759,60.706226647810254,60.706226647910256,60.852421241747685,60.852421241847686,60.9980057837283,60.998005783828305,61.143416025149826,61.14341602524983,61.288630178442375,61.28863017854238,61.43371360631561,61.43371360641561,61.723292197675136,61.72329219777514,61.86706837135519,61.86706837145519,62.01034343092785,62.01034343102785,62.153531340220965,62.15353134032097,62.29667567437431,62.296675674474315,62.439166381431065,62.43916638153107,62.58143921278896,62.58143921288896,62.723058417050254,62.723058417150256,63.006122525013765,63.00612252511377,63.14708810217847,63.147088102278474,63.28792295392387,63.28792295402387,63.42862708024994,63.42862708034994,63.56928763143624,63.56928763153624,63.70979566963334,63.70979566973334,63.84965008073384,63.84965008083384,63.98935197884514,63.989351978945145,64.12861812555872,64.12861812565872,64.2667513186382,64.2667513187382,64.40460127330915,64.40460127340916,64.54234229013069,64.54234229023069,64.6797782809738,64.67977828107381,64.81714890910727,64.81714890920728,64.95434523668165,64.95434523678165,65.09104045014863,65.09104045024863,65.22729991221789,65.22729991231789,65.36334149858827,65.36334149868827,65.63461853124326,65.63461853134326,65.76928750071082,65.76928750081082,65.90297602953349,65.90297602963349,66.03622880695843,66.03622880705844,66.16847935616859,66.16847935626859,66.30068633023899,66.30068633033899,66.43261006590086,66.43261006600086,66.56422877558433,66.56422877568433,66.6956731847087,66.6956731848087,66.82696508084386,66.82696508094386,66.95795195100062,66.95795195110063,67.08752262911477,67.08752262921477,67.21691900666983,67.21691900676983,67.34590142039704,67.34590142049704,67.47484025898449,67.47484025908449,67.60325619589466,67.60325619599466,67.73160677009517,67.73160677019517,67.85973946859681,67.85973946869682,67.98785037952857,67.98785037962857,68.11574341476147,68.11574341486147,68.2432878488762,68.2432878489762,68.37078870785113,68.37078870795114,68.4980934786971,68.4980934787971,68.62507143599477,68.62507143609477,68.75174436731403,68.75174436741403,68.87822121050431,68.87822121060431,69.00456732827527,69.00456732837527,69.13078272062693,69.13078272072693,69.25693275026892,69.25693275036892,69.38299562963135,69.38299562973135,69.50886242086483,69.50886242096483,69.6335962584642,69.6335962585642,69.7579597073755,69.75795970747551,69.88132092807204,69.88132092817204,70.00431176008051,70.00431176018051,70.12684505312136,70.12684505322136,70.24931298345255,70.24931298355256,70.36975466978433,70.36975466988433,70.49002205555699,70.490022055657,70.61015871591034,70.61015871601035,70.72909705991995,70.72909706001995,70.84799182878979,70.84799182888979,70.96669050953065,70.96669050963065,71.08484450102435,71.08484450112435,71.20269346653963,71.20269346663963,71.32049885691515,71.32049885701515,71.43826067215089,71.43826067225089,71.55576103654799,71.555761036648,71.67323961337522,71.67323961347522,71.79036958908425,71.79036958918425,71.90719453881488,71.90719453891488,72.02334407387903,72.02334407397903,72.13936288352387,72.13936288362387,72.2552073926096,72.25520739270961,72.37044184973854,72.37044184983854,72.48565451929758,72.48565451939758,72.60047501259866,72.60047501269867,72.71488154207191,72.71488154217191,72.82907019584628,72.82907019594629,72.94273594794339,72.94273594804339,73.05502908313767,73.05502908323767,73.16727864319216,73.16727864329216,73.27941926539722,73.27941926549722,73.50287258215167,73.50287258225167,73.61377131287321,73.61377131297321,73.72453931817543,73.72453931827543,73.83508944777878,73.83508944787879,73.94548706439295,73.94548706449295,74.0555796550287,74.0555796551287,74.16469180501956,74.16469180511956,74.27369501716097,74.27369501726098,74.3825457163132,74.3825457164132,74.49089530135804,74.49089530145804,74.70737659574885,74.70737659584886,74.8150725536971,74.81507255379711,74.9226813613658,74.9226813614658,75.0301376560453,75.0301376561453,75.13752858801514,75.13752858811515,75.24465806914634,75.24465806924634,75.35148252429913,75.35148252439913,75.45782765291443,75.45782765301443,75.56347557929335,75.56347557939336,75.66903635539273,75.66903635549274,75.77455355635234,75.77455355645235,75.8797003686239,75.8797003687239,75.98397567809998,75.98397567819998,76.08818562486641,76.08818562496641,76.19222127107375,76.19222127117375,76.296082616722,76.296082616822,76.39974787424127,76.39974787434127,76.50245447868555,76.50245447878555,76.60509572042017,76.60509572052017,76.70732299832693,76.70732299842693,76.80920167511552,76.80920167521552,76.91084068863536,76.91084068873536,77.01241433944554,77.01241433954554,77.11377011455686,77.11377011465686,77.2151041020983,77.2151041021983,77.31556658684427,77.31556658694427,77.4154625947732,77.4154625948732,77.51505357672373,77.51505357682373,77.61460098353447,77.61460098363447,77.71345118810886,77.71345118820886,77.81197457913495,77.81197457923496,77.91006221876333,77.91006221886333,78.10621571045017,78.10621571055017,78.20425977493876,78.20425977503876,78.30199881344895,78.30199881354895,78.39923673785174,78.39923673795174,78.49627857412555,78.49627857422556,78.59290644657155,78.59290644667155,78.7858353779152,78.78583537801521,78.88191856111402,78.88191856121402,78.97789280646342,78.97789280656342,79.07377990153326,79.07377990163326,79.16925303277526,79.16925303287526,79.26457365102806,79.26457365112806,79.35952388059279,79.35952388069279,79.45427802202855,79.45427802212855,79.54861819963645,79.54861819973645,79.6429148021046,79.6429148022046,79.83135549405166,79.83135549415167,79.92473701858458,79.92473701868458,80.01800960526806,80.01800960536806,80.11126040438165,80.11126040448165,80.20448941592537,80.20448941602537,80.29765306475942,80.29765306485942,80.3905988378946,80.3905988379946,80.48343567318035,80.48343567328035,80.57609820790701,80.57609820800701,80.66854286693481,80.66854286703482,80.76087858811319,80.76087858821319,80.85229923135633,80.85229923145633,80.94352378647048,80.94352378657048,81.03455225345567,81.03455225355567,81.12507960633347,81.12507960643347,81.21549802136184,81.21549802146184,81.30556783527203,81.30556783537203,81.39541977348335,81.39541977358336,81.48496668571626,81.48496668581626,81.57440466009975,81.57440466019975,81.75299737045819,81.75299737055819,81.84202138101384,81.84202138111384,81.93050070232232,81.93050070242232,82.01880572307171,82.01880572317171,82.194936438033,82.194936438133,82.28256604411591,82.28256604421591,82.37002134963973,82.37002134973973,82.45734592974424,82.45734592984424,82.54462693470897,82.54462693480897,82.63182078939415,82.63182078949416,82.71884034352026,82.71884034362026,82.80583811007646,82.80583811017647,82.89270515121336,82.89270515131336,82.97915822852241,82.97915822862241,83.06534985499283,83.06534985509283,83.15141075604393,83.15141075614393,83.23744986952514,83.23744986962514,83.32346719543646,83.32346719553647,83.40917949536937,83.40917949546937,83.49449961904435,83.49449961914435,83.57914432805282,83.57914432815282,83.66324434781416,83.66324434791416,83.74647286478002,83.74647286488002,83.82915669249874,83.82915669259874,83.91164443208847,83.91164443218847,83.99317351860321,83.99317351870322,84.07459366726852,84.07459366736852,84.1558830905145,84.1558830906145,84.31811333588828,84.31811333598829,84.39868376932803,84.39868376942803,84.55960676050863,84.55960676060863,84.6396542922711,84.6396542923711,84.71961467375402,84.71961467385402,84.79955326766705,84.79955326776705,84.87933934859088,84.87933934869088,84.95884219110619,84.95884219120619,85.03788749465387,85.03788749475387,85.11590878241691,85.11590878251691,85.19358146906175,85.19358146916176,85.27121058056684,85.27121058066685,85.34801176441624,85.34801176451624,85.42463864770654,85.42463864780655,85.50056832876048,85.50056832886048,85.5762365589758,85.5762365590758,85.65183942648144,85.65183942658145,85.72705011772914,85.72705011782914,85.80219544626716,85.80219544636716,85.87677429798816,85.87677429808816,85.95124421185972,85.95124421195972,86.02527837433354,86.02527837443354,86.09907287353863,86.09907287363863,86.17282379760394,86.17282379770394,86.2464875713897,86.2464875714897,86.39359724326236,86.39359724336236,86.46680347808051,86.46680347818051,86.61295449687817,86.61295449697818,86.75877870212753,86.75877870222753,86.83150561040819,86.83150561050819,86.90323029047406,86.90323029057406,86.97493318297005,86.97493318307005,87.04650535004673,87.04650535014673,87.11761997815579,87.11761997825579,87.18869103112507,87.18869103122508,87.25965314624493,87.25965314634493,87.33035381052615,87.33035381062615,87.4008365991085,87.4008365992085,87.4710797244221,87.4710797245221,87.5411703367465,87.5411703368465,87.61115201122146,87.61115201132147,87.68082865971803,87.68082865981803,87.75046173307481,87.75046173317482,87.81992050587252,87.81992050597252,87.8889217397026,87.8889217398026,87.95702968316733,87.95702968326734,88.0250940514923,88.0250940515923,88.0931148446775,88.0931148447775,88.22878604235983,88.22878604245983,88.29628393386776,88.29628393396776,88.36345501182738,88.36345501192739,88.43053893950747,88.43053893960747,88.49747035419834,88.49747035429834,88.5642710434699,88.5642710435699,88.63102815760169,88.63102815770169,88.69737130790564,88.69737130800564,88.76356194522039,88.76356194532039,88.82951291926638,88.82951291936638,88.89528959275329,88.89528959285329,88.96054336456291,88.96054336466291,89.02547032282425,89.02547032292425,89.09031013080603,89.09031013090603,89.15506278850827,89.15506278860828,89.21968472079121,89.21968472089121,89.28395805195595,89.28395805205595,89.34818780798092,89.34818780808092,89.41215611316726,89.41215611326726,89.47588475508483,89.47588475518484,89.53926479588424,89.53926479598424,89.60216551014615,89.60216551024615,89.66495728655862,89.66495728665862,89.72753118727222,89.72753118737222,89.78993078742674,89.78993078752674,89.85202536160286,89.85202536170286,89.97590948397666,89.97590948407667,90.0374593689056,90.0374593690056,90.09863886514648,90.09863886524649,90.15973121110783,90.15973121120783,90.22077998192938,90.22077998202938,90.28052149855777,90.28052149865778,90.34008871462706,90.34008871472706,90.39882800304068,90.39882800314068,90.45728405304575,90.45728405314576,90.51571831548097,90.51571831558097,90.57349895081957,90.57349895091957,90.63114886073886,90.63114886083886,90.68855910738941,90.68855910748941,90.74594756647006,90.74594756657007,90.80283491144333,90.80283491154333,90.85937365529843,90.85937365539843,90.91589061158362,90.91589061168362,90.97214611703019,90.9721461171302,91.02818374677788,91.02818374687789,91.08417780138582,91.08417780148582,91.14015006842386,91.14015006852387,91.19562122135451,91.19562122145452,91.25104879914541,91.25104879924541,91.30643280179652,91.30643280189652,91.36133747791013,91.36133747801013,91.4161550037442,91.4161550038442,91.47068929116973,91.47068929126974,91.52504927803619,91.5250492781362,91.57910423892423,91.57910423902423,91.63298489925319,91.63298489935319,91.68629908276509,91.68629908286509,91.73902500189007,91.73902500199007,91.79170734587528,91.79170734597528,91.84380142547354,91.84380142557355,91.89585192993205,91.89585193003205,91.94729238243373,91.94729238253373,91.99853674680644,91.99853674690644,92.04969396089959,92.04969396099959,92.10074223714332,92.10074223724332,92.15176872581716,92.15176872591717,92.20253376365237,92.20253376375237,92.25273232467052,92.25273232477052,92.30234262130175,92.30234262140175,92.40147606428467,92.40147606438467,92.45080312250737,92.45080312260737,92.50002124288063,92.50002124298064,92.54919578811413,92.54919578821413,92.59826139549821,92.59826139559821,92.64682588877488,92.64682588887489,92.69484569280442,92.69484569290442,92.74277834655439,92.74277834665439,92.79016631105722,92.79016631115722,92.83740176257083,92.83740176267084,92.88426682539638,92.88426682549638,92.93108831308216,92.93108831318216,92.97788801319804,92.97788801329804,93.02453520032472,93.02453520042472,93.07113881231163,93.07113881241163,93.11763348644911,93.11763348654911,93.16406279787694,93.16406279797694,93.21036138388543,93.21036138398543,93.25659460718428,93.25659460728428,93.30260995478426,93.30260995488426,93.34845100182514,93.34845100192514,93.39376914718876,93.39376914728876,93.43900014227283,93.43900014237283,93.48394789894837,93.48394789904837,93.52850347936597,93.52850347946597,93.57264509595572,93.57264509605572,93.66077581614603,93.66077581624603,93.70459061918748,93.70459061928749,93.74823112166985,93.74823112176985,93.87900011612774,93.87900011622774,93.92211771693285,93.92211771703285,93.96501744203907,93.96501744213907,94.00780822929588,94.00780822939588,94.05049007870323,94.05049007880324,94.13572305209865,94.13572305219866,94.17820881337704,94.17820881347704,94.22054206166624,94.22054206176624,94.26233062070825,94.26233062080826,94.30394487919119,94.3039448792912,94.3452758992656,94.3452758993656,94.38628010579173,94.38628010589173,94.4271753744684,94.4271753745684,94.46802706800533,94.46802706810533,94.50866088584337,94.50866088594337,94.5491639782621,94.5491639783621,94.58960170797118,94.58960170807119,94.62993049983082,94.62993049993082,94.67017214141092,94.67017214151092,94.71028305757169,94.71028305767169,94.75032861102281,94.75032861112281,94.7902434390546,94.79024343915461,94.82941748971028,94.82941748981028,94.90770022831194,94.90770022841194,94.94672176597841,94.94672176607841,94.98563436579543,94.98563436589544,95.02452517804258,95.02452517814258,95.10226322739709,95.10226322749709,95.14102331422491,95.14102331432491,95.2572599995686,95.2572599996686,95.29588936097711,95.29588936107712,95.33425727154697,95.33425727164698,95.37245088155775,95.37245088165776,95.41060091642876,95.41060091652876,95.44848950046114,95.44848950056114,95.52396164254746,95.52396164264746,95.56152341303154,95.56152341313154,95.59895445809629,95.59895445819629,95.63612405232242,95.63612405242242,95.67325007140876,95.67325007150876,95.7100710645167,95.7100710646167,95.74649988136669,95.74649988146669,95.78277618522746,95.78277618532746,95.81898712637859,95.81898712647859,95.85515449238993,95.85515449248993,95.9273584989933,95.9273584990933,95.96335156444556,95.96335156454556,95.99914854176885,95.99914854186885,96.03485836881258,96.03485836891258,96.07035032015744,96.07035032025745,96.10582048393243,96.10582048403244,96.14120349742787,96.14120349752787,96.17654293578353,96.17654293588353,96.21186058656932,96.21186058666932,96.247003936796,96.24700393689601,96.28203834917326,96.28203834927326,96.31702918641075,96.31702918651075,96.35175857280959,96.35175857290959,96.38616114566014,96.38616114576014,96.42041120552149,96.42041120562149,96.45453053996353,96.45453054006353,96.48862808683566,96.48862808693566,96.5225731207186,96.5225731208186,96.55638742918222,96.55638742928222,96.58974419867823,96.58974419877823,96.6225344913572,96.6225344914572,96.6549326077782,96.65493260787821,96.68717821121001,96.68717821131001,96.71914057623329,96.71914057633329,96.75099400340714,96.75099400350715,96.78271670516168,96.78271670526168,96.81439583177642,96.81439583187642,96.8460531708213,96.84605317092131,96.87755799687697,96.87755799697698,96.90901924779287,96.90901924789287,96.94024083544001,96.94024083554001,96.97141884794738,96.97141884804738,97.0025314977451,97.0025314978451,97.03331733399452,97.03331733409452,97.06401601996438,97.06401602006439,97.0946493432246,97.0946493433246,97.12523909134504,97.12523909144504,97.15571990161605,97.15571990171605,97.18617892431718,97.18617892441718,97.2166161594484,97.21661615954841,97.24690088159043,97.24690088169044,97.27703309074327,97.27703309084328,97.3071435123262,97.30714351242621,97.33714499605972,97.33714499615972,97.36699396680402,97.36699396690402,97.42664833315285,97.42664833325286,97.45641015361763,97.45641015371763,97.48612839894261,97.48612839904261,97.51554161828918,97.51554161838918,97.54478053707668,97.54478053717668,97.57340940390733,97.57340940400734,97.60184218260903,97.60184218270904,97.63007887318174,97.63007887328175,97.65829377618458,97.65829377628458,97.68633437862832,97.68633437872832,97.71422246808284,97.71422246818284,97.74171838127943,97.74171838137943,97.76914893176634,97.76914893186634,97.79631803141463,97.79631803151463,97.82344355592313,97.82344355602314,97.8501769041737,97.8501769042737,97.87686667728448,97.87686667738448,97.90333857469639,97.9033385747964,97.92978868453842,97.92978868463842,97.95621700681058,97.95621700691058,97.9825363912333,97.9825363913333,98.00883398808612,98.00883398818613,98.03491370924009,98.03491370934009,98.06088449254462,98.06088449264462,98.08683348827927,98.08683348837927,98.11249924560539,98.1124992457054,98.13796891480254,98.13796891490254,98.16335143372014,98.16335143382014,98.18853786450877,98.18853786460878,98.2137025077275,98.2137025078275,98.2387800006667,98.2387800007667,98.2889131989752,98.2889131990752,98.31359851565644,98.31359851575644,98.33826204476779,98.33826204486779,98.36290378630926,98.36290378640926,98.38750195271095,98.38750195281095,98.43641504710581,98.43641504720581,98.4607081875291,98.4607081876291,98.4849577528126,98.4849577529126,98.50885871697794,98.50885871707794,98.53267253086372,98.53267253096372,98.55637740690008,98.55637740700008,98.57984261966769,98.57984261976769,98.6032642572955,98.60326425739551,98.62662053221368,98.62662053231368,98.6497371438631,98.64973714396311,98.67270124252332,98.67270124262332,98.69551282819434,98.69551282829434,98.71821547601591,98.71821547611592,98.74061309785908,98.74061309795908,98.76277105643351,98.76277105653351,98.78488543986816,98.78488543996816,98.80680373517383,98.80680373527383,98.8285695174903,98.8285695175903,98.85026993709711,98.85026993719711,98.87181784371471,98.87181784381471,98.893235024913,98.893235025013,98.91458684340162,98.91458684350162,98.97859872372773,98.97859872382773,98.99964551623795,98.99964551633795,99.02053979575896,99.02053979585897,99.04097653631236,99.04097653641236,99.06128255144644,99.06128255154644,99.08156677901064,99.08156677911064,99.10180743143506,99.10180743153506,99.1216994827413,99.12169948284131,99.141504383768,99.141504383868,99.1609606836765,99.16096068377651,99.18039519601514,99.18039519611514,99.19954646994525,99.19954647004525,99.21856701845603,99.21856701855603,99.23704287771966,99.23704287781966,99.2553444364242,99.2553444365242,99.27362420755885,99.27362420765886,99.29151180243555,99.29151180253555,99.30937760974236,99.30937760984236,99.34484777351734,99.34484777361735,99.36234319213608,99.36234319223608,99.37933749664744,99.37933749674744,99.39613571302982,99.39613571312982,99.41249817801447,99.41249817811448,99.42868634244003,99.42868634254003,99.44476556901616,99.44476556911616,99.46080122045251,99.46080122055251,99.4767932967491,99.4767932968491,99.4925892849167,99.4925892850167,99.50827633523488,99.50827633533488,99.52381087256386,99.52381087266386,99.53897502120475,99.53897502130475,99.55409559470588,99.55409559480589,99.56919438063713,99.56919438073713,99.58418422871894,99.58418422881894,99.61414213731267,99.61414213741267,99.62904483511494,99.62904483521494,99.64381680749788,99.64381680759789,99.65850162960129,99.65850162970129,99.67305572628537,99.67305572638537,99.68758803539957,99.68758803549957,99.702076769374,99.702076769474,99.71599902653138,99.71599902663138,99.72987770854898,99.72987770864898,99.74373460299671,99.74373460309671,99.75717753361658,99.75717753371659,99.77051152638704,99.77051152648704,99.78375836887794,99.78375836897794,99.79685269837964,99.79685269847964,99.80981630246201,99.80981630256201,99.82227879243702,99.82227879253702,99.83471949484212,99.83471949494212,99.84711662210745,99.84711662220745,99.85947017423302,99.85947017433303,99.87173657607903,99.87173657617903,99.88385046493585,99.88385046503585,99.89583362837334,99.89583362847334,99.90779500424095,99.90779500434095,99.9196910173989,99.9196910174989,99.94341768100514,99.94341768110515,99.9549868806148,99.9549868807148,99.96640356723525,99.96640356733525,99.9776677408665,99.9776677409665,99.98891012692785,99.98891012702785,100.0,100.0000000001],[0.0,1e-10,3.0572739920503382,3.0572739921503382,6.0856980584,6.0856980585,8.826118053034776,8.826118053134776,11.34596529483117,11.34596529493117,13.613418746337244,13.613418746437244,15.840762189201257,15.840762189301257,18.06636171864605,18.066361718746048,20.26504900396708,20.265049004067077,22.27954889050506,22.279548890605056,24.256823760971045,24.256823761071043,26.11661053849032,26.11661053859032,27.85929675937827,27.85929675947827,29.573520590880925,29.573520590980923,31.276139862717415,31.276139862817413,32.89858217686038,32.89858217696038,34.37694710086235,34.376947100962354,35.82420147065726,35.82420147075726,37.137884990417085,37.13788499051709,38.419230757637806,38.41923075773781,39.697088698020075,39.697088698120076,40.95658172301229,40.95658172311229,42.16776188735353,42.16776188745353,43.34167397603217,43.34167397613217,44.510354324453154,44.510354324553155,45.66495418674858,45.66495418684858,46.798950034942855,46.79895003504286,47.917681258270136,47.91768125837014,48.99247016939212,48.99247016949212,50.05322165397916,50.05322165407916,51.04417354220679,51.044173542306794,52.02293956629519,52.022939566395195,52.975999014796564,52.975999014896566,53.901715623268196,53.9017156233682,54.82695857624325,54.82695857634325,55.748972059923446,55.74897206002345,56.660392884316536,56.66039288441654,57.54033714798246,57.540337148082465,58.40533973371088,58.405339733810884,59.26142898418551,59.26142898428551,60.11631256612338,60.116312566223385,60.96329471318653,60.96329471328653,61.74340531605094,61.74340531615094,62.51761675500342,62.51761675510342,63.278781138004696,63.2787811381047,64.03443389340943,64.03443389350943,64.7806350686779,64.7806350687779,65.48375512355304,65.48375512365304,66.17462472490304,66.17462472500304,66.8623509761394,66.8623509762394,67.54312310349415,67.54312310359416,68.21698416655794,68.21698416665794,68.85030462507369,68.85030462517369,69.47016896152755,69.47016896162755,70.05349723535899,70.05349723545899,70.61798693830379,70.61798693840379,71.1779123246452,71.17791232474521,71.71514530674145,71.71514530684145,72.24889046199927,72.24889046209927,72.77305485834901,72.77305485844902,73.29110479283385,73.29110479293385,73.80674339024519,73.80674339034519,74.30978705740661,74.30978705750661,74.81199106255137,74.81199106265137,75.3039684149291,75.3039684150291,75.78085338080223,75.78085338090223,76.24654285311986,76.24654285321986,76.70855073044136,76.70855073054136,77.16868551557185,77.16868551567185,77.61133810691955,77.61133810701955,78.04944791145915,78.04944791155916,78.48723476906926,78.48723476916926,78.91888563501917,78.91888563511917,79.34648889945284,79.34648889955284,79.75471534811741,79.75471534821742,80.14909813840472,80.14909813850473,80.54137100875272,80.54137100885272,80.93075888653065,80.93075888663066,81.3072073573339,81.3072073574339,81.68092154413414,81.68092154423414,82.05259040038099,82.052590400481,82.42225698566503,82.42225698576503,82.78854339308712,82.78854339318713,83.14830627253362,83.14830627263362,83.5062175895844,83.5062175896844,83.85043595682501,83.85043595692501,84.17228486674995,84.17228486684995,84.47764195347584,84.47764195357584,84.77727211465219,84.7772721147522,85.0691515495209,85.0691515496209,85.36090180561781,85.36090180571782,85.6489058773327,85.6489058774327,85.92601587262628,85.92601587272628,86.20120971613827,86.20120971623827,86.47338938830838,86.47338938840838,86.74492316661951,86.74492316671952,87.01419631642426,87.01419631652426,87.28273745318884,87.28273745328885,87.54770464393378,87.54770464403379,87.81075568289712,87.81075568299713,88.06995288850193,88.06995288860193,88.32839655127127,88.32839655137127,88.58460111532952,88.58460111542952,88.8355093497442,88.8355093498442,89.08458755155847,89.08458755165847,89.32845554291039,89.32845554301039,89.57212976610461,89.57212976620461,89.81266063918517,89.81266063928517,90.04455806435084,90.04455806445084,90.26633648572596,90.26633648582596,90.48339988193061,90.48339988203061,90.69676015334382,90.69676015344382,90.9060728232408,90.9060728233408,91.10948632922587,91.10948632932588,91.3071729096614,91.3071729097614,91.50477337091574,91.50477337101574,91.68956360396717,91.68956360406717,91.874310777428,91.874310777528,92.0552041175303,92.0552041176303,92.233750709945,92.233750710045,92.40954148856143,92.40954148866143,92.57960534162834,92.57960534172834,92.74923859878925,92.74923859888925,92.91256362592756,92.91256362602756,93.07401556087486,93.07401556097486,93.23531678725504,93.23531678735505,93.3956922324374,93.3956922325374,93.5544529429723,93.5544529430723,93.71108220377262,93.71108220387262,93.86181230066101,93.86181230076102,94.0104324776101,94.0104324777101,94.15795463499892,94.15795463509892,94.3000297541771,94.3000297542771,94.43980118525829,94.43980118535829,94.57785023271556,94.57785023281556,94.71342335371344,94.71342335381344,94.84031996720582,94.84031996730582,94.9669366933593,94.9669366934593,95.09273528729143,95.09273528739143,95.2177157490022,95.2177157491022,95.34256703194117,95.34256703204117,95.46707383815536,95.46707383825536,95.58012679327048,95.58012679337048,95.6864624522523,95.6864624523523,95.78788931790595,95.78788931800595,95.88832581297584,95.88832581307584,95.98848242070684,95.98848242080685,96.08540955914299,96.08540955924299,96.17772932138516,96.17772932148516,96.26630289924529,96.26630289934529,96.35479035792423,96.35479035802423,96.44103871789208,96.44103871799209,96.52468197262874,96.52468197272874,96.60369632137612,96.60369632147612,96.68225854442221,96.68225854452221,96.75505078232817,96.75505078242817,96.82368776974143,96.82368776984143,96.89146356534272,96.89146356544272,96.95872264585682,96.95872264595683,97.02593866678035,97.02593866688035,97.09222890650601,97.09222890660601,97.15836843766456,97.15836843776457,97.22433573046074,97.22433573056074,97.29028149346162,97.29028149356162,97.35435416427147,97.35435416437147,97.41760870285998,97.41760870295998,97.47944227495874,97.47944227505874,97.54026394667845,97.54026394677845,97.59736096381143,97.59736096391143,97.65060414758588,97.65060414768588,97.7027062522095,97.7027062523095,97.75418399276943,97.75418399286943,97.80027928450463,97.80027928460463,97.84615927828682,97.84615927838682,97.89094125250875,97.89094125260876,97.93423767085507,97.93423767095507,97.9772111422719,97.9772111423719,98.01938801126266,98.01938801136266,98.0580985832103,98.0580985833103,98.09627091027544,98.09627091037544,98.13338827737094,98.13338827747094,98.16796512862115,98.16796512872115,98.19982922566369,98.1998292257637,98.23111201823315,98.23111201833315,98.26196421489664,98.26196421499664,98.29171839199988,98.29171839209988,98.32117115196893,98.32117115206893,98.34905223688114,98.34905223698114,98.37661037486387,98.37661037496387,98.40345802960175,98.40345802970175,98.4286263603063,98.4286263604063,98.45338562490015,98.45338562500015,98.47775735317863,98.47775735327863,98.50210755166182,98.50210755176182,98.5264146905544,98.5264146906544,98.55003287599742,98.55003287609742,98.57345729328274,98.57345729338275,98.59664488281979,98.59664488291979,98.61978941276622,98.61978941286623,98.64286935332676,98.64286935342676,98.66571246613901,98.66571246623901,98.68840487038418,98.68840487048418,98.71094656606223,98.71094656616224,98.73338061276381,98.73338061286381,98.75551324233119,98.75551324243119,98.77740904415029,98.77740904425029,98.79926178637879,98.7992617864788,98.8209207604496,98.8209207605496,98.84242902595331,98.84242902605331,98.86387270207112,98.86387270217112,98.88516566962184,98.88516566972184,98.90632945840078,98.90632945850078,98.92742865779381,98.92742865789381,98.9906831963823,98.99068319648231,99.01148097864115,99.01148097874115,99.03212805233291,99.03212805243291,99.05232300032338,99.05232300042339,99.07238876954206,99.07238876964206,99.09243300896544,99.09243300906545,99.11243418879822,99.11243418889822,99.13209089190622,99.13209089200622,99.15166147583302,99.15166147593303,99.17088758303504,99.17088758313504,99.19009216044175,99.19009216054175,99.20901685050958,99.20901685060959,99.22781236180563,99.22781236190563,99.24606962821919,99.24606962831919,99.26415465627036,99.26415465637037,99.28221815452623,99.28221815462624,99.29989411646672,99.29989411656672,99.31754854861191,99.31754854871191,99.3525990553587,99.3525990554587,99.3698874809838,99.36988748108381,99.38668072131703,99.38668072141704,99.40328019349258,99.40328019359258,99.41944906976214,99.41944906986214,99.4354457076693,99.4354457077693,99.45133469659997,99.45133469669997,99.46718062594005,99.46718062604005,99.48298349568952,99.48298349578953,99.4985925972813,99.4985925973813,99.5140940498966,99.5140940499966,99.52944479394479,99.52944479404479,99.5444295314729,99.5444295315729,99.55937120941041,99.55937120951042,99.57429135755262,99.57429135765263,99.58910385671835,99.58910385681835,99.61870732525449,99.61870732535449,99.63343370523901,99.63343370533902,99.64803090645175,99.64803090655175,99.66254198848328,99.66254198858329,99.67692389174302,99.67692389184302,99.69128426520746,99.69128426530746,99.7056015790813,99.7056015791813,99.71935911827738,99.71935911837738,99.73307359788285,99.73307359798285,99.74676654769301,99.74676654779302,99.76005043139251,99.76005043149252,99.7732266661155,99.7732266662155,99.7863167816573,99.78631678175731,99.79925618863201,99.79925618873202,99.81206641683492,99.81206641693493,99.82438145974595,99.82438145984595,99.83667497286169,99.83667497296169,99.84892542638683,99.84892542648683,99.86113282032137,99.86113282042137,99.87325409507471,99.87325409517472,99.88522466126096,99.88522466136097,99.89706604867543,99.89706604877543,99.90888590629459,99.90888590639459,99.92064117452784,99.92064117462785,99.94408712160846,99.94408712170846,99.95551944291223,99.95551944301224,99.96680105564893,99.96680105574893,99.9779319598185,99.97793195991851,99.9890413341928,99.9890413342928,100.0,100.0000000001],[0.0,1e-10,4.751530403555112,4.751530403655112,9.273651927649869,9.273651927749869,13.65360884063698,13.65360884073698,17.350885311592243,17.35088531169224,20.91843278356662,20.918432783666617,23.737698709816073,23.73769870991607,26.239964850980638,26.239964851080636,28.5503672621895,28.550367262289498,30.780349826334728,30.780349826434726,32.9937154662618,32.9937154663618,35.04832123569255,35.04832123579255,37.083883620002354,37.083883620102355,39.07823949862385,39.07823949872385,40.95727348987472,40.957273489974725,42.762127104954835,42.76212710505484,44.48326781888896,44.48326781898896,45.93333818625514,45.933338186355144,47.36618501417747,47.36618501427747,48.793160673308236,48.79316067340824,50.16911565899212,50.16911565909212,51.543727425247674,51.543727425347676,52.890694869075105,52.89069486917511,54.1921011764869,54.1921011765869,55.49082104504205,55.49082104514205,56.717375366568916,56.71737536666892,57.90480300603842,57.90480300613842,59.06341642228739,59.06341642238739,60.19317228565684,60.193172285756845,61.32290648419681,61.32290648429681,62.431690792620785,62.43169079272079,63.4820233910831,63.482023391183105,64.52438333229343,64.52438333239343,65.48669172854142,65.48669172864142,66.43974924259756,66.43974924269756,67.36847715313742,67.36847715323742,68.28784585733797,68.28784585743797,69.19753038275688,69.19753038285688,70.10654329846163,70.10654329856163,70.8991294204918,70.8991294205918,71.69115225695528,71.69115225705528,72.46120695631677,72.46120695641677,73.2259971021124,73.2259971022124,73.9623629916183,73.96236299171831,74.69504586011107,74.69504586021107,75.3693853427896,75.3693853428896,76.04337818819631,76.04337818829632,76.70573702016736,76.70573702026736,77.36415285317139,77.36415285327139,77.99152298551749,77.9915229856175,78.61239366901687,78.61239366911687,79.21968050442656,79.21968050452656,79.75603668808886,79.75603668818886,80.27709750213182,80.27709750223183,80.79698841538237,80.79698841548237,81.29963412435959,81.29963412445959,81.79493545613998,81.79493545623998,82.2643256518514,82.2643256519514,82.72680476695577,82.72680476705577,83.16213785071027,83.16213785081027,83.5940045617465,83.5940045618465,84.0257412838058,84.0257412839058,84.44987365071442,84.44987365081442,84.84707663456805,84.84707663466806,85.22072994876702,85.22072994886702,85.59306170836713,85.59306170846713,85.96103883723994,85.96103883733994,86.32836602122806,86.32836602132807,86.695064925161,86.69506492526101,87.0577125059795,87.0577125060795,87.41914685634659,87.41914685644659,87.77678986155307,87.77678986165307,88.12685017643837,88.12685017653837,88.47379075587723,88.47379075597723,88.81078717858058,88.81078717868058,89.1431039981143,89.1431039982143,89.46716651761264,89.46716651771264,89.78732936780294,89.78732936790294,90.09761305574621,90.09761305584621,90.40011906990287,90.40011907000287,90.69684057458595,90.69684057468595,90.98749592701206,90.98749592711206,91.27258341825946,91.27258341835946,91.54902664254071,91.54902664264071,91.81268761742338,91.81268761752338,92.07333718100705,92.07333718110705,92.33119198158663,92.33119198168663,92.58679363989934,92.58679363999934,92.8342926519831,92.8342926520831,93.07943019765257,93.07943019775257,93.32198962861283,93.32198962871283,93.56435407610768,93.56435407620768,93.79527949363228,93.79527949373228,94.00553666382424,94.00553666392425,94.2050480785896,94.2050480786896,94.40256632904196,94.40256632914196,94.59871969523651,94.59871969533651,94.79309654541295,94.79309654551295,94.98121225986704,94.98121225996704,95.16358679450649,95.16358679460649,95.3454847028972,95.3454847029972,95.52393790339913,95.52393790349913,95.7008962306663,95.7008962307663,95.8750164652704,95.87501646537041,96.04053576256733,96.04053576266733,96.20518846668469,96.20518846678469,96.36583317734656,96.36583317744656,96.52433306988901,96.52433306998901,96.68278963277247,96.68278963287247,96.84079123423668,96.84079123433668,96.99244504066056,96.99244504076056,97.14360055600618,97.14360055610618,97.29334785743502,97.29334785753503,97.44255353812663,97.44255353822663,97.58452316576887,97.58452316586887,97.7241313269968,97.7241313270968,97.856221792392,97.85622179249201,97.98601578586135,97.98601578596136,98.1064722378209,98.1064722379209,98.21003012277892,98.21003012287892,98.30914671769168,98.30914671779168,98.40598850550806,98.40598850560806,98.50192037048592,98.50192037058592,98.5965956753534,98.5965956754534,98.68906116761299,98.68906116771299,98.76727120206873,98.76727120216873,98.84197153414723,98.84197153424724,98.91587026753464,98.91587026763465,98.98836078700526,98.98836078710526,99.05918311460522,99.05918311470522,99.12484921278676,99.12484921288676,99.18839215767836,99.18839215777837,99.25100351490194,99.25100351500194,99.30791702196987,99.30791702206987,99.36327066131459,99.36327066141459,99.41669613083477,99.41669613093477,99.46578863445713,99.46578863455713,99.51143643019071,99.51143643029071,99.55433279257919,99.55433279267919,99.59709916599073,99.59709916609073,99.63306278294267,99.63306278304267,99.66750986183038,99.66750986193038,99.69810060106903,99.69810060116903,99.72827970854738,99.72827970864738,99.75798218977697,99.75798218987697,99.78623312743079,99.78623312753079,99.81140765929716,99.81140765939716,99.83636554286863,99.83636554296864,99.85995854218228,99.85995854228229,99.88255495933944,99.88255495943945,99.90055843264491,99.90055843274492,99.91734867549899,99.91734867559899,99.93368395693379,99.9336839570338,99.94889266723516,99.94889266733516,99.96386306441214,99.96386306451214,99.97664531381072,99.97664531391072,99.98899426661953,99.98899426671953,100.0,100.0000000001]],"coord_y":[[171927,171927,171927,171261,171261,146782,146782,130087,130087,125923,125923,120757,120757,110113,110113,100683,100683,94587,94587,94326,94326,86559,86559,86505,86505,83692,83692,78500,78500,75851,75851,74583,74583,70983,70983,69062,69062,66259,66259,66128,66128,63686,63686,59796,59796,58473,58473,58279,58279,55329,55329,52438,52438,49739,49739,47648,47648,44609,44609,42412,42412,42127,42127,41162,41162,40514,40514,40050,40050,37248,37248,36673,36673,34011,34011,33993,33993,31729,31729,30476,30476,30272,30272,30167,30167,30162,30162,30023,30023,30000,30000,29444,29444,28762,28762,28641,28641,28479,28479,28336,28336,27007,27007,26322,26322,25699,25699,24808,24808,23206,23206,22690,22690,22468,22468,22069,22069,21662,21662,21632,21632,21436,21436,20887,20887,20691,20691,20167,20167,19044,19044,18769,18769,18397,18397,18208,18208,17404,17404,16740,16740,16640,16640,16588,16588,16151,16151,15873,15873,15185,15185,14849,14849,14790,14790,14541,14541,14377,14377,14297,14297,14176,14176,14133,14133,14100,14100,14034,14034,13790,13790,13516,13516,12787,12787,12341,12341,12149,12149,12093,12093,11710,11710,11660,11660,11610,11610,11024,11024,11005,11005,10975,10975,10850,10850,10675,10675,10514,10514,10496,10496,10016,10016,9820,9820,9783,9783,9780,9780,9725,9725,9674,9674,9427,9427,9365,9365,9088,9088,9085,9085,8979,8979,8928,8928,8926,8926,8670,8670,8533,8533,8506,8506,8457,8457,8369,8369,8117,8117,7922,7922,7910,7910,7875,7875,7860,7860,7780,7780,7744,7744,7497,7497,7364,7364,7306,7306,7288,7288,7205,7205,7132,7132,7089,7089,7086,7086,7001,7001,6730,6730,6667,6667,6655,6655,6571,6571,6279,6279,6076,6076,6006,6006,5910,5910,5484,5484,5382,5382,5341,5341,5226,5226,5209,5209,5157,5157,5054,5054,4973,4973,4966,4966,4934,4934,4899,4899,4846,4846,4802,4802,4765,4765,4673,4673,4479,4479,4422,4422,4310,4310,4269,4269,4161,4161,4009,4009,3995,3995,3986,3986,3941,3941,3879,3879,3718,3718,3610,3610,3494,3494,3434,3434,3409,3409,3304,3304,3282,3282,3252,3252,3172,3172,3087,3087,2979,2979,2836,2836,2804,2804,2599,2599,2564,2564,2473,2473,2198,2198,2129,2129,1956,1956,1897,1897,1860,1860,1791,1791,1692,1692,1659,1659,1508,1508,1467,1467,1464,1464,1388,1388,1203,1203,1150,1150,1043,1043,1041,1041,1025,1025,1024,1024,1014,1014,1004,1004,0.0],[112538,112538,112538,82998,82998,77676,77676,72015,72015,69478,69478,65543,65543,64723,64723,63599,63599,60381,60381,58557,58557,58117,58117,52718,52718,51448,51448,50178,50178,48997,48997,48088,48088,45969,45969,43575,43575,42960,42960,41595,41595,41568,41568,41325,41325,39132,39132,38117,38117,36845,36845,36746,36746,36064,36064,35754,35754,34300,34300,33662,33662,31818,31818,31673,31673,31600,31600,30135,30135,29812,29812,29565,29565,29327,29327,29199,29199,28860,28860,28720,28720,28684,28684,28549,28549,28208,28208,27865,27865,27494,27494,27066,27066,26936,26936,25435,25435,25345,25345,24827,24827,24698,24698,24543,24543,24340,24340,23740,23740,23728,23728,23696,23696,22892,22892,22752,22752,22712,22712,21987,21987,21117,21117,20665,20665,20130,20130,20118,20118,20096,20096,19974,19974,19812,19812,19760,19760,19041,19041,19034,19034,18953,18953,18810,18810,17846,17846,17633,17633,17561,17561,17455,17455,17394,17394,17079,17079,16773,16773,16772,16772,16735,16735,16731,16731,16621,16621,16604,16604,16466,16466,16366,16366,16158,16158,16123,16123,16038,16038,15890,15890,15875,15875,15747,15747,15440,15440,15291,15291,15188,15188,15174,15174,15056,15056,14722,14722,14503,14503,14480,14480,14409,14409,14163,14163,14102,14102,14045,14045,13884,13884,13789,13789,13784,13784,13759,13759,13741,13741,13703,13703,13378,13378,13372,13372,13337,13337,13269,13269,13203,13203,13180,13180,13166,13166,13006,13006,12846,12846,12825,12825,12668,12668,12657,12657,12591,12591,12354,12354,12291,12291,12195,12195,12135,12135,12082,12082,11925,11925,11815,11815,11805,11805,11675,11675,11651,11651,11437,11437,11345,11345,11266,11266,11251,11251,11247,11247,11194,11194,11122,11122,10891,10891,10626,10626,10622,10622,10520,10520,10442,10442,10356,10356,10315,10315,10292,10292,10037,10037,10028,10028,9972,9972,9870,9870,9816,9816,9791,9791,9655,9655,9595,9595,9511,9511,9382,9382,9225,9225,9208,9208,9172,9172,9120,9120,9076,9076,9003,9003,8992,8992,8924,8924,8866,8866,8849,8849,8844,8844,8797,8797,8736,8736,8642,8642,8610,8610,8585,8585,8565,8565,8514,8514,8407,8407,8357,8357,8249,8249,8194,8194,7948,7948,7760,7760,7710,7710,7602,7602,7467,7467,7465,7465,7350,7350,7298,7298,7133,7133,7111,7111,6980,6980,6971,6971,6966,6966,6950,6950,6895,6895,6824,6824,6755,6755,6628,6628,6573,6573,6535,6535,6475,6475,6451,6451,6405,6405,6350,6350,6339,6339,6332,6332,6276,6276,6186,6186,6174,6174,6087,6087,6061,6061,6043,6043,5956,5956,5866,5866,5785,5785,5755,5755,5708,5708,5640,5640,5635,5635,5373,5373,5252,5252,5215,5215,5209,5209,5166,5166,5134,5134,5065,5065,5048,5048,5038,5038,5018,5018,4862,4862,4838,4838,4806,4806,4765,4765,4750,4750,4746,4746,4744,4744,4729,4729,4714,4714,4689,4689,4685,4685,4579,4579,4525,4525,4478,4478,4461,4461,4422,4422,4416,4416,4335,4335,4315,4315,4174,4174,4020,4020,3997,3997,3986,3986,3948,3948,3848,3848,3846,3846,3748,3748,3729,3729,3718,3718,3709,3709,3689,3689,3688,3688,3629,3629,3585,3585,3522,3522,3448,3448,3442,3442,3435,3435,3255,3255,3252,3252,3239,3239,3219,3219,3198,3198,3105,3105,3083,3083,3064,3064,3013,3013,2981,2981,2965,2965,2962,2962,2941,2941,2876,2876,2873,2873,2866,2866,2862,2862,2848,2848,2843,2843,2812,2812,2768,2768,2715,2715,2684,2684,2676,2676,2672,2672,2671,2671,2668,2668,2612,2612,2593,2593,2579,2579,2567,2567,2564,2564,2541,2541,2505,2505,2480,2480,2473,2473,2442,2442,2280,2280,2261,2261,2246,2246,2217,2217,2203,2203,2190,2190,2188,2188,2153,2153,2129,2129,2092,2092,1970,1970,1803,1803,1769,1769,1754,1754,1730,1730,1683,1683,1654,1654,1634,1634,1622,1622,1613,1613,1546,1546,1481,1481,1449,1449,1408,1408,1397,1397,1360,1360,1359,1359,1354,1354,1322,1322,1310,1310,1223,1223,1222,1222,1172,1172,1156,1156,1071,1071,1050,1050,1041,1041,1012,1012,0.0],[31311,31311,31311,28101,28101,27448,27448,27046,27046,26093,26093,24310,24310,24297,24297,24220,24220,23745,23745,23680,23680,22641,22641,22150,22150,21930,21930,21372,21372,20345,20345,20142,20142,20131,20131,20049,20049,19923,19923,19844,19844,19768,19768,19297,19297,19295,19295,19282,19282,19022,19022,18753,18753,18742,18742,18118,18118,17581,17581,17530,17530,17483,17483,17435,17435,17339,17339,17294,17294,17148,17148,16655,16655,16621,16621,16573,16573,16268,16268,16091,16091,15793,15793,15745,15745,15594,15594,15551,15551,15503,15503,15375,15375,15206,15206,15160,15160,15151,15151,14834,14834,14796,14796,14651,14651,14619,14619,14587,14587,14566,14566,14333,14333,14183,14183,14159,14159,14101,14101,14021,14021,13980,13980,13907,13907,13870,13870,13750,13750,13657,13657,13655,13655,13434,13434,13377,13377,13212,13212,13207,13207,13185,13185,13097,13097,13047,13047,13008,13008,12918,12918,12871,12871,12848,12848,12782,12782,12642,12642,12638,12638,12411,12411,12327,12327,12201,12201,12151,12151,12143,12143,12104,12104,12057,12057,12052,12052,11913,11913,11908,11908,11852,11852,11820,11820,11813,11813,11780,11780,11749,11749,11708,11708,11691,11691,11622,11622,11513,11513,11423,11423,11391,11391,11282,11282,11259,11259,11253,11253,11085,11085,10804,10804,10777,10777,10751,10751,10727,10727,10720,10720,10687,10687,10627,10627,10577,10577,10431,10431,10397,10397,10345,10345,10301,10301,10264,10264,10262,10262,10236,10236,10082,10082,10007,10007,9923,9923,9886,9886,9822,9822,9722,9722,9677,9677,9639,9639,9637,9637,9597,9597,9590,9590,9557,9557,9555,9555,9528,9528,9499,9499,9487,9487,9387,9387,9204,9204,9182,9182,9178,9178,9051,9051,8854,8854,8822,8822,8819,8819,8780,8780,8747,8747,8716,8716,8679,8679,8672,8672,8667,8667,8643,8643,8624,8624,8588,8588,8583,8583,8581,8581,8490,8490,8458,8458,8434,8434,8433,8433,8388,8388,8317,8317,8293,8293,8275,8275,8223,8223,8187,8187,8186,8186,8160,8160,8103,8103,8057,8057,8046,8046,8044,8044,8025,8025,7952,7952,7930,7930,7927,7927,7903,7903,7880,7880,7879,7879,7876,7876,7871,7871,7869,7869,7862,7862,7853,7853,7843,7843,7841,7841,7835,7835,7832,7832,7757,7757,7744,7744,7736,7736,7699,7699,7681,7681,7643,7643,7609,7609,7586,7586,7560,7560,7552,7552,7548,7548,7492,7492,7491,7491,7483,7483,7458,7458,7449,7449,7417,7417,7385,7385,7371,7371,7366,7366,7349,7349,7338,7338,7333,7333,7317,7317,7309,7309,7282,7282,7275,7275,7274,7274,7223,7223,7189,7189,7163,7163,7133,7133,7127,7127,7109,7109,7047,7047,7027,7027,7001,7001,6969,6969,6965,6965,6903,6903,6896,6896,6873,6873,6852,6852,6830,6830,6782,6782,6772,6772,6760,6760,6752,6752,6710,6710,6682,6682,6674,6674,6665,6665,6659,6659,6632,6632,6599,6599,6576,6576,6572,6572,6570,6570,6540,6540,6530,6530,6500,6500,6492,6492,6470,6470,6464,6464,6458,6458,6456,6456,6449,6449,6419,6419,6412,6412,6392,6392,6340,6340,6327,6327,6322,6322,6308,6308,6305,6305,6297,6297,6274,6274,6254,6254,6244,6244,6207,6207,6181,6181,6136,6136,6116,6116,6070,6070,6068,6068,6055,6055,6041,6041,6033,6033,6026,6026,6012,6012,5947,5947,5939,5939,5920,5920,5918,5918,5894,5894,5891,5891,5881,5881,5880,5880,5870,5870,5854,5854,5852,5852,5843,5843,5828,5828,5814,5814,5805,5805,5799,5799,5793,5793,5790,5790,5786,5786,5777,5777,5725,5725,5708,5708,5662,5662,5645,5645,5624,5624,5621,5621,5528,5528,5520,5520,5514,5514,5459,5459,5457,5457,5448,5448,5423,5423,5409,5409,5407,5407,5405,5405,5393,5393,5392,5392,5376,5376,5362,5362,5331,5331,5325,5325,5317,5317,5289,5289,5288,5288,5270,5270,5251,5251,5241,5241,5217,5217,5154,5154,5152,5152,5147,5147,5109,5109,5090,5090,5084,5084,5074,5074,5067,5067,5053,5053,5008,5008,5003,5003,4996,4996,4973,4973,4963,4963,4943,4943,4939,4939,4932,4932,4929,4929,4917,4917,4903,4903,4881,4881,4849,4849,4845,4845,4843,4843,4826,4826,4786,4786,4783,4783,4775,4775,4767,4767,4758,4758,4714,4714,4711,4711,4692,4692,4676,4676,4665,4665,4662,4662,4652,4652,4651,4651,4611,4611,4585,4585,4571,4571,4569,4569,4537,4537,4522,4522,4502,4502,4501,4501,4500,4500,4486,4486,4463,4463,4454,4454,4435,4435,4420,4420,4410,4410,4405,4405,4401,4401,4382,4382,4375,4375,4358,4358,4349,4349,4330,4330,4328,4328,4321,4321,4286,4286,4281,4281,4280,4280,4279,4279,4276,4276,4266,4266,4261,4261,4253,4253,4243,4243,4238,4238,4196,4196,4187,4187,4178,4178,4155,4155,4150,4150,4134,4134,4124,4124,4110,4110,4105,4105,4092,4092,4086,4086,4061,4061,4053,4053,4031,4031,4022,4022,4014,4014,4008,4008,4006,4006,4002,4002,3994,3994,3993,3993,3987,3987,3968,3968,3956,3956,3950,3950,3949,3949,3948,3948,3934,3934,3916,3916,3885,3885,3860,3860,3820,3820,3795,3795,3786,3786,3742,3742,3737,3737,3731,3731,3715,3715,3698,3698,3688,3688,3674,3674,3670,3670,3669,3669,3662,3662,3649,3649,3628,3628,3581,3581,3565,3565,3563,3563,3525,3525,3517,3517,3485,3485,3473,3473,3470,3470,3452,3452,3449,3449,3423,3423,3418,3418,3398,3398,3387,3387,3385,3385,3381,3381,3371,3371,3360,3360,3348,3348,3345,3345,3338,3338,3292,3292,3291,3291,3285,3285,3264,3264,3262,3262,3257,3257,3245,3245,3235,3235,3224,3224,3217,3217,3212,3212,3198,3198,3196,3196,3188,3188,3167,3167,3126,3126,3124,3124,3122,3122,3105,3105,3098,3098,3083,3083,3079,3079,3072,3072,3066,3066,3064,3064,3045,3045,3038,3038,3027,3027,3019,3019,2995,2995,2980,2980,2976,2976,2972,2972,2966,2966,2950,2950,2948,2948,2936,2936,2925,2925,2909,2909,2887,2887,2882,2882,2872,2872,2864,2864,2850,2850,2836,2836,2825,2825,2808,2808,2804,2804,2802,2802,2742,2742,2734,2734,2696,2696,2683,2683,2682,2682,2652,2652,2646,2646,2635,2635,2634,2634,2611,2611,2595,2595,2594,2594,2582,2582,2572,2572,2570,2570,2569,2569,2546,2546,2544,2544,2542,2542,2520,2520,2516,2516,2503,2503,2495,2495,2481,2481,2473,2473,2447,2447,2420,2420,2418,2418,2391,2391,2389,2389,2361,2361,2352,2352,2348,2348,2343,2343,2342,2342,2330,2330,2304,2304,2277,2277,2273,2273,2264,2264,2259,2259,2257,2257,2252,2252,2229,2229,2204,2204,2200,2200,2175,2175,2168,2168,2151,2151,2149,2149,2148,2148,2141,2141,2139,2139,2134,2134,2131,2131,2125,2125,2122,2122,2112,2112,2104,2104,2080,2080,2076,2076,2063,2063,2045,2045,2026,2026,2019,2019,2011,2011,2003,2003,1996,1996,1979,1979,1969,1969,1964,1964,1959,1959,1953,1953,1950,1950,1943,1943,1918,1918,1910,1910,1897,1897,1882,1882,1877,1877,1875,1875,1865,1865,1859,1859,1856,1856,1851,1851,1847,1847,1841,1841,1838,1838,1832,1832,1798,1798,1795,1795,1791,1791,1786,1786,1785,1785,1783,1783,1779,1779,1777,1777,1773,1773,1761,1761,1753,1753,1751,1751,1739,1739,1725,1725,1724,1724,1718,1718,1706,1706,1704,1704,1690,1690,1672,1672,1665,1665,1662,1662,1660,1660,1654,1654,1652,1652,1643,1643,1639,1639,1629,1629,1628,1628,1624,1624,1622,1622,1621,1621,1613,1613,1608,1608,1606,1606,1594,1594,1579,1579,1572,1572,1566,1566,1565,1565,1558,1558,1552,1552,1531,1531,1505,1505,1487,1487,1480,1480,1467,1467,1462,1462,1456,1456,1454,1454,1453,1453,1446,1446,1444,1444,1433,1433,1431,1431,1428,1428,1413,1413,1409,1409,1406,1406,1404,1404,1399,1399,1398,1398,1397,1397,1390,1390,1383,1383,1382,1382,1377,1377,1370,1370,1368,1368,1366,1366,1364,1364,1350,1350,1342,1342,1314,1314,1305,1305,1296,1296,1295,1295,1287,1287,1280,1280,1262,1262,1259,1259,1247,1247,1245,1245,1227,1227,1225,1225,1215,1215,1214,1214,1213,1213,1208,1208,1207,1207,1197,1197,1192,1192,1191,1191,1178,1178,1169,1169,1165,1165,1156,1156,1155,1155,1151,1151,1150,1150,1133,1133,1132,1132,1131,1131,1129,1129,1116,1116,1115,1115,1113,1113,1097,1097,1093,1093,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,665,665,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,509,509,0.0],[142002,142002,142002,140662,140662,127285,127285,117040,117040,105317,105317,103454,103454,103373,103373,102123,102123,93568,93568,91839,91839,86382,86382,80943,80943,79621,79621,79082,79082,75358,75358,68666,68666,67221,67221,61017,61017,59515,59515,59353,59353,58500,58500,56256,56256,54525,54525,54282,54282,53628,53628,52671,52671,51962,51962,49921,49921,49269,49269,46027,46027,45461,45461,44267,44267,42997,42997,42975,42975,42825,42825,42333,42333,40871,40871,40177,40177,39763,39763,39707,39707,39340,39340,36234,36234,35960,35960,35354,35354,35098,35098,34659,34659,32658,32658,32089,32089,31943,31943,31620,31620,31299,31299,29416,29416,28791,28791,27094,27094,26219,26219,26007,26007,24953,24953,24791,24791,24346,24346,24062,24062,23950,23950,23365,23365,23326,23326,22851,22851,22150,22150,21630,21630,21459,21459,21372,21372,20560,20560,20349,20349,20334,20334,20049,20049,19861,19861,18961,18961,18318,18318,18220,18220,18086,18086,17485,17485,17358,17358,17263,17263,17170,17170,17013,17013,16710,16710,16624,16624,15988,15988,14949,14949,14183,14183,13917,13917,13557,13557,13551,13551,13377,13377,12871,12871,12782,12782,12642,12642,12612,12612,12507,12507,12473,12473,12307,12307,12218,12218,12039,12039,12004,12004,11900,11900,11654,11654,11569,11569,11327,11327,11318,11318,11172,11172,10771,10771,10301,10301,10082,10082,9910,9910,9722,9722,9448,9448,9182,9182,9178,9178,8583,8583,8581,8581,8402,8402,8293,8293,8165,8165,7899,7899,7879,7879,7586,7586,7499,7499,7492,7492,7449,7449,7374,7374,7275,7275,7001,7001,6903,6903,6852,6852,6599,6599,6492,6492,6412,6412,6297,6297,5894,5894,5881,5881,5843,5843,5805,5805,5799,5799,5783,5783,5251,5251,4939,4939,4711,4711,4665,4665,4652,4652,4502,4502,4288,4288,4114,4114,4110,4110,4006,4006,3885,3885,3670,3670,3649,3649,3381,3381,3188,3188,3148,3148,3124,3124,3122,3122,3079,3079,3072,3072,3064,3064,3063,3063,2976,2976,2938,2938,2872,2872,2825,2825,2652,2652,2473,2473,2420,2420,2391,2391,2141,2141,2131,2131,2080,2080,2011,2011,1996,1996,1959,1959,1798,1798,1773,1773,1724,1724,1606,1606,1480,1480,1453,1453,1433,1433,1382,1382,1368,1368,1295,1295,1280,1280,1247,1247,1169,1169,1150,1150,1132,1132,1131,1131,1129,1129,1097,1097,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,665,665,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,509,509,0.0],[219320,219320,219320,208731,208731,202169,202169,170658,170658,164670,164670,130131,130131,115499,115499,106643,106643,102931,102931,102164,102164,94836,94836,93957,93957,92055,92055,86732,86732,83308,83308,79444,79444,66932,66932,66137,66137,65866,65866,63511,63511,63449,63449,62173,62173,60070,60070,59946,59946,56615,56615,54809,54809,53479,53479,52147,52147,52146,52146,51179,51179,48481,48481,48113,48113,44418,44418,43991,43991,42868,42868,42436,42436,41989,41989,41958,41958,36584,36584,36558,36558,35544,35544,35301,35301,33989,33989,33819,33819,31126,31126,31110,31110,30573,30573,30391,30391,28958,28958,28658,28658,28031,28031,24757,24757,24051,24051,23997,23997,23201,23201,22862,22862,21666,21666,21347,21347,20094,20094,19934,19934,19928,19928,19577,19577,18334,18334,17247,17247,17186,17186,16985,16985,16955,16955,16926,16926,16739,16739,16683,16683,16508,16508,16158,16158,16014,16014,15555,15555,15339,15339,14958,14958,14778,14778,14322,14322,13963,13963,13696,13696,13416,13416,13159,13159,12760,12760,12170,12170,12031,12031,11902,11902,11798,11798,11424,11424,11315,11315,11196,11196,11187,11187,10659,10659,9705,9705,9209,9209,9117,9117,9054,9054,8972,8972,8683,8683,8418,8418,8396,8396,8237,8237,8168,8168,8037,8037,7640,7640,7600,7600,7415,7415,7316,7316,7314,7314,7293,7293,7000,7000,6977,6977,6912,6912,6887,6887,6553,6553,6444,6444,6097,6097,5991,5991,5560,5560,4780,4780,4575,4575,4470,4470,4428,4428,4370,4370,4268,4268,3610,3610,3448,3448,3411,3411,3346,3346,3269,3269,3031,3031,2933,2933,2890,2890,2627,2627,2555,2555,2466,2466,2266,2266,2107,2107,1980,1980,1974,1974,1660,1660,1590,1590,1412,1412,1393,1393,1371,1371,1304,1304,1162,1162,1152,1152,1089,1089,1043,1043,831,831,775,775,754,754,702,702,691,691,590,590,570,570,508,508,0.0]]}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"coord_x":[[0.0,1e-10,3.5818721978699646,3.5818721979699646,7.149869164486074,7.149869164586074,10.207878464641077,10.207878464741077,12.918069467824465,12.918069467924465,15.54150902515042,15.54150902525042,18.057321788696477,18.057321788796475,20.351380856347607,20.351380856447605,22.448978316305272,22.44897831640527,24.419573659560992,24.41957365966099,26.384731412190202,26.3847314122902,28.188073967899467,28.188073967999465,29.990291504858416,29.990291504958414,31.733903898398307,31.733903898498305,33.36934782246371,33.36934782256371,34.94960332672211,34.949603326822114,36.50344172402873,36.503441724128734,37.98227887131452,37.98227887141452,39.42109451824197,39.421094518341974,40.80151335855597,40.801513358655974,42.17920298671645,42.17920298681645,43.50601676694612,43.50601676704612,44.75178752979216,44.75178752989216,45.969995333255554,45.969995333355556,47.184161402690044,47.184161402790046,48.33686811446857,48.336868114568574,49.42934465574426,49.42934465584426,50.465591093184884,50.465591093284885,51.458274304571745,51.45827430467175,52.38764396073268,52.38764396083268,53.27124202070034,53.271242020800344,54.14890248170803,54.14890248180803,55.006458440974015,55.00645844107402,55.850514175236256,55.85051417533626,56.684903081718026,56.68490308181803,57.46091601526692,57.46091601536692,58.22494958249304,58.22494958259304,58.93352389206487,58.93352389216487,59.64172319538659,59.64172319548659,60.30275504591743,60.30275504601743,60.93768229470491,60.937682294804915,61.568359472657875,61.56835947275788,62.1968491141519,62.196849114251904,62.82523458724312,62.825234587343125,63.450724178736316,63.45072417883632,64.07573459557659,64.0757345956766,64.68916148602477,64.68916148612477,65.2883798063301,65.2883798064301,65.88507725128753,65.88507725138753,66.478399639994,66.478399640094,67.06874281238021,67.06874281248021,67.63139802330039,67.6313980234004,68.17978216303605,68.17978216313605,68.715186919782,68.715186919882,69.23202886714779,69.23202886724779,69.71549525825431,69.71549525835431,70.18821147019116,70.18821147029117,70.65630260504342,70.65630260514342,71.1160811013517,71.1160811014517,71.56738028967149,71.56738028977149,72.01805446757446,72.01805446767446,72.46464524408741,72.46464524418741,72.89979832997217,72.89979833007217,73.3308680144669,73.3308680145669,73.7510208503475,73.7510208504475,74.14777746295772,74.14777746305772,74.53880481341356,74.53880481351356,74.92208203470058,74.92208203480058,75.30142169036151,75.30142169046151,75.66401106685112,75.66401106695112,76.012766879448,76.012766879548,76.35943932398874,76.35943932408874,76.70502841714028,76.70502841724029,77.04151319188654,77.04151319198654,77.37220620343672,77.37220620353672,77.68856564276071,77.68856564286071,77.99792496541609,77.99792496551609,78.30605510091834,78.30605510101834,78.60899764996083,78.60899765006083,78.90852347539126,78.90852347549126,79.20638260637678,79.20638260647678,79.50172086201437,79.50172086211437,79.79616326938782,79.79616326948782,80.08991816530275,80.08991816540275,80.38229803830063,80.38229803840063,80.66959449324155,80.66959449334155,80.95118251970867,80.95118251980867,81.49917081951367,81.49917081961367,81.75627927132119,81.75627927142119,82.00938765646094,82.00938765656095,82.26132935548925,82.26132935558925,82.50529175486258,82.50529175496258,82.74821247020783,82.74821247030783,82.99009150152503,82.99009150162503,83.21976199603327,83.21976199613327,83.44903665061085,83.44903665071085,83.67768629477158,83.67768629487158,83.90373172886214,83.90373172896214,84.12613126885448,84.12613126895448,84.34517658627644,84.34517658637644,84.56384689744829,84.56384689754829,84.77251704195069,84.7725170420507,84.97710378506308,84.97710378516308,85.1809196819947,85.1809196820947,85.38467307788463,85.38467307798463,85.5872806213437,85.5872806214437,85.78882564709411,85.78882564719412,85.9852247537459,85.9852247538459,86.18033217220287,86.18033217230287,86.36966866114435,86.36966866124435,86.55894264904416,86.55894264914416,86.74600826680445,86.74600826690445,86.93201136685612,86.93201136695612,87.11797279954666,87.11797279964667,87.2986008100135,87.2986008101135,87.47637460624344,87.47637460634344,87.65358589309822,87.65358589319823,87.8297763296055,87.8297763297055,88.00413340222337,88.00413340232338,88.17324038733979,88.17324038743979,88.33828480474675,88.33828480484675,88.50307921798696,88.50307921808697,88.66714445240754,88.66714445250754,88.83089718161969,88.83089718171969,88.99298321638695,88.99298321648695,89.15431923865398,89.15431923875398,89.31050934182237,89.31050934192237,89.4639285654761,89.4639285655761,89.61613943565726,89.61613943575726,89.76797529958833,89.76797529968833,89.9180819680328,89.9180819681328,90.0666677777963,90.0666677778963,90.21435773929565,90.21435773939565,90.36198519975333,90.36198519985334,90.50784179736328,90.50784179746329,90.64805246754112,90.64805246764112,90.7869506158436,90.7869506159436,90.92559875997934,90.92559876007934,91.06249687494791,91.06249687504791,91.19331155519258,91.19331155529258,91.3198969982833,91.3198969983833,91.44502408373472,91.44502408383472,91.56815113585226,91.56815113595226,91.68240304005067,91.68240304015067,91.79452990883182,91.79452990893182,91.90580259670995,91.90580259680995,92.01467941132353,92.01467941142353,92.12320205336755,92.12320205346755,92.2306413440224,92.2306413441224,92.33593476557942,92.33593476567943,92.43954065901099,92.43954065911099,92.5430007166786,92.54300071677861,92.64579409656828,92.64579409666828,92.74785829763829,92.74785829773829,92.84881831363856,92.84881831373856,92.94886164769413,92.94886164779413,93.04813413556893,93.04813413566893,93.14548992483208,93.14548992493208,93.23880398006634,93.23880398016634,93.3309305155086,93.3309305156086,93.42072367872798,93.42072367882798,93.50966266104435,93.50966266114435,93.5963516058601,93.5963516059601,93.67987383123052,93.67987383133053,93.76310438507308,93.76310438517308,93.8461474357906,93.8461474358906,93.92825297088285,93.92825297098285,94.0090668177803,94.0090668178803,94.08652644210737,94.08652644220737,94.16173602893382,94.16173602903382,94.23452890881515,94.23452890891515,94.3060717678628,94.3060717679628,94.37709378489642,94.37709378499642,94.4459282654711,94.4459282655711,94.51430440507342,94.51430440517342,94.5820555342589,94.5820555343589,94.64813996899949,94.64813996909949,94.71245354089235,94.71245354099236,94.77451707528459,94.7745170753846,94.83360139335656,94.83360139345656,94.89201903365056,94.89201903375056,94.94616576942948,94.94616576952949,94.99958332638877,94.99958332648878,95.05110501841698,95.05110501851698,95.0968974482908,95.0968974483908,95.1412523542059,95.1412523543059,95.1820030333839,95.1820030334839,95.22152452540875,95.22152452550876,95.26027517125286,95.26027517135286,95.29758829313822,95.29758829323822,95.33283888064801,95.33283888074801,95.36740195669928,95.36740195679928,95.39881914698579,95.39881914708579,95.42938215636927,95.42938215646927,95.45988266471107,95.45988266481108,95.48879981333022,95.48879981343022,95.51386273104552,95.51386273114552,95.53782146369106,95.53782146379106,95.55955099251655,95.55955099261655,95.5812388539809,95.58123885408091,95.60259337655627,95.60259337665627,95.62392706545108,95.62392706555109,95.6450524175403,95.6450524176403,95.66596943282389,95.66596943292389],[0.0,1e-10,2.3445807430123837,2.3445807431123837,4.073734562242704,4.073734562342704,5.692011533525559,5.692011533625559,7.192349039150653,7.192349039250653,8.63983149719162,8.63983149729162,10.005333422223703,10.005333422323703,11.353751729195487,11.353751729295487,12.67875297921632,12.67875297931632,13.936711445190753,13.936711445290753,15.156669277821297,15.156669277921297,16.36746029100485,16.367460291104848,17.465770262837715,17.465770262937713,18.537621460357673,18.53762146045767,19.583013883564725,19.583013883664723,20.603801730028835,20.603801730128833,21.60565176086268,21.60565176096268,22.56335522258704,22.56335522268704,23.47118285304755,23.47118285314755,24.366197769962834,24.366197770062833,25.232774712911883,25.23277471301188,26.098789146485775,26.098789146585773,26.959740995683262,26.95974099578326,27.775004583409725,27.775004583509723,28.569121985366422,28.56912198546642,29.336738945649095,29.336738945749094,30.102293371556193,30.10229337165619,30.853639227320457,30.853639227420455,31.598526642110702,31.5985266422107,32.31312188536476,32.31312188546476,33.01442524042067,33.01442524052067,33.67731128852147,33.677311288621475,34.33717645294088,34.33717645304088,34.99552075867931,34.995520758779314,35.623343722395376,35.62334372249538,36.24443740729012,36.24443740739012,36.860385173086215,36.860385173186216,37.47137452290872,37.47137452300872,38.07969716161936,38.07969716171936,38.68095718261971,38.68095718271971,39.27930048834147,39.27930048844147,39.87689378156303,39.87689378166303,40.471674527908796,40.4716745280088,41.05935098918315,41.05935098928315,41.63988149802497,41.63988149812497,42.21268271137852,42.21268271147852,42.776567109451825,42.77656710955183,43.33774312905215,43.33774312915215,43.8676477941299,43.8676477942299,44.39567742795713,44.395677428057134,44.91291521525359,44.91291521535359,45.42746545775763,45.42746545785763,45.93878647977466,45.938786479874665,46.44587826463774,46.44587826473774,46.94046984116402,46.94046984126402,47.43481141352356,47.434811413623564,47.928486308105136,47.92848630820514,48.40541092351539,48.40541092361539,48.87941882364706,48.87941882374706,49.35259337655628,49.35259337665628,49.810663511058515,49.810663511158516,50.25060834347239,50.250608343572395,50.68113635227254,50.68113635237254,51.10051834197237,51.10051834207237,51.51965032750546,51.51965032760546,51.9383239720662,51.9383239721662,52.35445590759846,52.35445590769846,52.76721278687978,52.76721278697978,53.178886314771916,53.17888631487192,53.57558042634044,53.57558042644044,53.972128702145035,53.97212870224504,54.36698944982416,54.36698944992416,54.75887098118302,54.758870981283025,55.130668844480745,55.13066884458075,55.498029133818896,55.4980291339189,55.86388939815664,55.86388939825664,56.22754129235487,56.22754129245487,56.58992233203887,56.58992233213887,56.94574076234604,56.94574076244604,57.29518408640144,57.29518408650144,57.644606576776276,57.64460657687628,57.99325822097035,57.99325822107035,58.34182653044218,58.34182653054218,58.68810313505225,58.688103135152254,59.03402556709278,59.034025567192785,59.37707295121585,59.37707295131585,59.718036967282785,59.71803696738279,60.05466757779296,60.054667577892964,60.39056900948349,60.390569009583494,60.72469957832631,60.72469957842631,61.05574676244604,61.05574676254604,61.386481441357354,61.386481441457356,61.71454940915682,61.71454940925682,62.03622143702395,62.03622143712395,62.35478924648744,62.354789246587444,62.671211186853114,62.671211186953116,62.98734145569093,62.98734145579093,63.301013350222505,63.301013350322506,63.60772679544659,63.60772679554659,63.90987766462774,63.909877664727745,64.21154935915598,64.21154935925598,64.51174186236437,64.51174186246438,64.80680928015467,64.80680928025467,65.10060584343073,65.10060584353073,65.39321488691478,65.39321488701478,65.68246970782846,65.68246970792846,65.96974532908882,65.96974532918883,66.25691678194636,66.25691678204636,66.54356739278988,66.54356739288988,66.8298429973833,66.8298429974833,67.11532692211537,67.11532692221537,67.394039900665,67.39403990076501,67.67262787713129,67.67262787723129,67.9504866747779,67.95048667487791,68.22692878214637,68.22692878224638,68.50199586659778,68.50199586669778,68.77658377639628,68.77658377649628,69.05088001466692,69.05088001476692,69.32184286404774,69.32184286414774,69.58947232453875,69.58947232463875,69.85666427773796,69.85666427783796,70.12058534308905,70.12058534318905,70.38427723795397,70.38427723805397,70.64659410990183,70.64659411000183,70.90397339955666,70.90397339965666,71.16004016733612,71.16004016743612,71.4141069017817,71.4141069018817,71.66692361539359,71.66692361549359,71.91863614393573,71.91863614403573,72.16707778462974,72.16707778472974,72.413227720462,72.413227720562,72.65916931948865,72.65916931958866,72.90240254004233,72.90240254014233,73.14513575226253,73.14513575236253,73.38341055684262,73.38341055694262,73.61976866281104,73.61976866291104,73.85448090801513,73.85448090811514,74.0888806480108,74.0888806481108,74.32319705328422,74.32319705338422,74.55640927348789,74.55640927358789,74.78812146869114,74.78812146879115,75.01502108368473,75.01502108378473,75.23639977332955,75.23639977342955,75.45769512825214,75.45769512835214,75.67686544775746,75.67686544785747,75.894410740179,75.894410740279,76.11016433607227,76.11016433617228,76.32506375106252,76.32506375116252,76.53948399139986,76.53948399149986,76.74859164319405,76.74859164329405,76.9575117918632,76.9575117919632,77.1652652544209,77.1652652545209,77.37089368156136,77.37089368166136,77.5753970899515,77.5753970900515,77.7793796563276,77.77937965642761,77.98052884214736,77.98052884224737,78.18042800713346,78.18042800723346,78.37857714295238,78.37857714305238,78.5740387339789,78.5740387340789,78.76622943715729,78.7662294372573,78.95806596776613,78.95806596786613,79.3409890164836,79.3409890165836,79.53099218320305,79.53099218330306,79.7200786679778,79.7200786680778,79.90764429407157,79.90764429417158,80.09498074967917,80.09498074977917,80.28090051500858,80.28090051510858,80.46561192686545,80.46561192696545,80.64996916615277,80.64996916625277,80.83422223703728,80.83422223713728,81.01749612493542,81.01749612503542,81.1994991583193,81.1994991584193,81.37954382573042,81.37954382583042,81.55892181536359,81.55892181546359,81.73777896298272,81.73777896308272,81.91621943699062,81.91621943709062,82.09359739328988,82.09359739338989,82.2687461457691,82.2687461458691,82.44285321422024,82.44285321432024,82.61471024517076,82.61471024527076,82.7854214236904,82.7854214237904,82.95100751679195,82.95100751689195,83.11267687794796,83.11267687804796,83.27330455507592,83.27330455517593,83.43168219470324,83.43168219480324,83.58724728745479,83.58724728755479,83.74277071284521,83.74277071294522,83.89589826497108,83.89589826507108,84.04794246570776,84.04794246580776,84.19654910915182,84.19654910925182,84.34469741162353,84.34469741172353,84.4901165019417,84.4901165020417,84.63534808913482,84.63534808923482,84.78047550792513,84.78047550802513,84.92526958782646,84.92526958792646,85.06891781529693,85.06891781539693,85.21108685144752,85.21108685154752,85.3518183636394,85.3518183637394,85.48990399839997,85.48990399849997,85.62684378072967,85.62684378082967,85.76299188319805,85.76299188329806,85.89788996483274,85.89788996493274,86.03228803813397,86.03228803823397,86.16572776212936,86.16572776222937,86.29802163369389,86.2980216337939,86.43008633477224,86.43008633487224,86.56200520008667,86.56200520018668,86.69275737928966,86.69275737938966,86.82163452724213,86.82163452734213,86.95026167102785,86.95026167112785,87.07707628460474,87.07707628470475,87.20334922248703,87.20334922258704,87.32924715411923,87.32924715421923,87.45333255554259,87.45333255564259,87.57554292571542,87.57554292581543,87.69606576776279,87.69606576786279,87.81596359939333,87.81596359949333,87.93488224803747,87.93488224813747,88.05238420640345,88.05238420650345,88.16978199636661,88.16978199646661,88.2817213620227,88.2817213621227,88.39113985233087,88.39113985243087,88.49978749645827,88.49978749655827,88.6083101385023,88.6083101386023,88.7159369322822,88.7159369323822,88.82289704828413,88.82289704838414,88.92841964032733,88.92841964042734,89.03358805980099,89.03358805990099,89.13854814246905,89.13854814256905,89.24309155152586,89.24309155162587,89.3443849064151,89.3443849065151,89.44517825297088,89.44517825307088,89.64609826830447,89.64609826840447,89.74537075617927,89.74537075627927,89.84433073884564,89.84433073894564,89.94320738678978,89.94320738688978,90.04204236737279,90.04204236747279,90.14056484274738,90.14056484284738,90.23877481291355,90.23877481301355,90.33646394106569,90.33646394116569,90.43406973449558,90.43406973459558,90.52946715778596,90.52946715788596,90.62373956232604,90.62373956242604,90.71703278387973,90.71703278397973,90.80997183286388,90.80997183296388,90.90209836830614,90.90209836840614,90.99409990166502,90.99409990176503,91.08441390689845,91.08441390699845,91.17431123852064,91.17431123862065,91.26127102118369,91.26127102128369,91.34502241704028,91.34502241714029,91.42829463824397,91.42829463834397,91.51133768896149,91.51133768906149,91.59358905981766,91.59358905991766,91.67375706261771,91.67375706271771,91.75388339805663,91.75388339815663,91.83196803280055,91.83196803290055,91.90965682761379,91.90965682771379,91.98711645194086,91.98711645204087,92.06438857314289,92.0643885732429,92.14124402073368,92.14124402083368,92.21807863464392,92.21807863474392,92.29368406140102,92.29368406150103,92.36837280621344,92.36837280631345,92.44174902915049,92.44174902925049,92.513583559726,92.513583559826,92.58529308821814,92.58529308831814,92.65685678094636,92.65685678104636,92.72467041117352,92.72467041127352,92.792421540359,92.792421540459,92.8599018316972,92.8599018317972,92.92696544942416,92.92696544952416,92.99359155985933,92.99359155995933,93.0582801380023,93.0582801381023,93.12251037517292,93.12251037527292,93.18634477241288,93.18634477251288,93.2491166519442,93.24911665204421,93.31122185369756,93.31122185379756,93.37299371656194,93.37299371666194,93.43470307838464,93.43470307848465,93.49597493291554,93.49597493301555,93.55589259820997,93.55589259830997,93.6157477624627,93.6157477625627,93.67545709095151,93.67545709105151,93.73508308471808,93.73508308481809,93.79441740695678,93.79441740705678,93.85364756079268,93.85364756089268,93.91223187053117,93.91223187063117,93.96989949832498,93.96989949842498,94.02646294104902,94.02646294114902,94.08238053967567,94.08238053977567,94.13813146885781,94.13813146895781,94.19379906331773,94.19379906341773,94.24944582409707,94.24944582419707,94.30503008383474,94.30503008393474,94.35944765746096,94.35944765756096,94.41346939115653,94.41346939125653,94.46719945332423,94.46719945342423,94.52067951132518,94.52067951142519,94.57409706828447,94.57409706838448,94.62703545059084,94.62703545069084,94.67922382039701,94.67922382049701,94.73089134818913,94.73089134828913,94.78241304021734,94.78241304031734,94.83328888814813,94.83328888824813,94.880789679828,94.880789679928,94.92789463157719,94.92789463167719,94.97468707811797,94.97468707821797,95.02087534792247,95.02087534802247,95.0667719461991,95.0667719462991,95.11239770662844,95.11239770672844,95.15798179969666,95.15798179979666,95.20283671394523,95.20283671404523,95.24719161986033,95.24719161996033,95.29077567959466,95.29077567969466,95.33181803030051,95.33181803040051,95.3693811563526,95.3693811564526,95.40623593726562,95.40623593736562,95.44277821297021,95.44277821307021,95.47882048034134,95.47882048044134,95.51388356472607,95.51388356482607,95.54834247237454,95.54834247247454,95.58238470641177,95.58238470651177,95.61617693628227,95.61617693638227,95.64978166302772,95.64978166312773,95.68199053317555,95.68199053327555,95.7128452140869,95.7128452141869,95.74303321722029,95.74303321732029,95.77236703945066,95.77236703955066,95.80147169119485,95.80147169129485,95.82980549675828,95.82980549685828,95.85811846864114,95.85811846874114,95.91464024400406,95.91464024410406,95.94218236970616,95.94218236980616,95.96947449124153,95.96947449134153,95.99495408256804,95.99495408266804,96.02041284021401,96.02041284031401,96.04482991383189,96.04482991393189,96.06891364856081,96.06891364866081,96.091226520442,96.09122652054201,96.11310188503141,96.11310188513141,96.13478974649577,96.13478974659577,96.15587343122385,96.15587343132385],[0.0,1e-10,0.652323372056201,0.652323372156201,1.2377706295104918,1.2377706296104918,1.809613493558226,1.809613493658226,2.3730812180203005,2.3730812181203005,2.916694444907415,2.916694445007415,3.423161219353656,3.423161219453656,3.9293571559525993,3.9293571560525993,4.433948899148319,4.433948899248319,4.928644644077401,4.9286446441774014,5.4219861997699965,5.4219861998699965,5.893681561359356,5.893681561459356,6.355147585793096,6.355147585893096,6.812030200503342,6.812030200603342,7.257287621460358,7.257287621560358,7.681148852480875,7.681148852580875,8.100780846347439,8.100780846447439,8.520183669727828,8.520183669827828,8.937878131302188,8.937878131402188,9.352947549125819,9.352947549225819,9.766371106185103,9.766371106285103,10.178211303521726,10.178211303621726,10.580238837313955,10.580238837413955,10.982224703745063,10.982224703845063,11.383939732328873,11.383939732428873,11.780238003966733,11.780238004066733,12.170932015533593,12.170932015633593,12.561396856614277,12.561396856714277,12.938861481024684,12.938861481124684,13.30513841897365,13.30513841907365,13.670352839213987,13.670352839313987,14.03458807646794,14.03458807656794,14.39782329705495,14.39782329715495,14.759058484308072,14.759058484408072,15.119356155935932,15.119356156035932,15.476612110201836,15.476612110301836,15.823597059950998,15.823597060050998,16.169873664561077,16.169873664661075,16.51515025250421,16.515150252604208,16.85407256787613,16.85407256797613,17.189307321788696,17.189307321888695,17.51833363889398,17.51833363899398,17.846359939332324,17.846359939432322,18.1712403540059,18.171240354105898,18.49522492041534,18.495224920515337,18.818209470157836,18.818209470257834,19.13852730878848,19.138527308888477,19.455324255404257,19.455324255504255,19.771162852714212,19.77116285281421,20.086813946899117,20.086813946999115,20.39586076434607,20.39586076444607,20.704115901931697,20.704115902031695,21.009350155835932,21.00935015593593,21.3139177319622,21.313917732062198,21.617818630310506,21.617818630410504,21.921282021367023,21.92128202146702,22.219891164852747,22.219891164952745,22.51537525625427,22.515375256354268,22.81035933932232,22.81035933942232,23.104135068917817,23.104135069017815,23.3962441040684,23.3962441041684,23.68749895831597,23.68749895841597,23.977232953882563,23.97723295398256,24.26619610326839,24.266196103368387,24.55265921098685,24.552659211086848,24.837184786413108,24.837184786513106,25.12166869447824,25.12166869457824,25.40154835913932,25.401548359239317,25.6802405040084,25.680240504108397,25.95549509158486,25.95549509168486,26.230645510758514,26.230645510858512,26.505337588959815,26.505337589059813,26.77819630327172,26.77819630337172,27.050013333555558,27.050013333655556,27.321017850297505,27.321017850397503,27.59014733578893,27.59014733588893,27.858297638293973,27.85829763839397,28.1259687661461,28.1259687662461,28.392264871081185,28.392264871181183,28.655644260737677,28.655644260837676,28.91894031567193,28.918940315771927,29.17750712511875,29.17750712521875,29.434323905398422,29.43432390549842,29.688515641927367,29.688515642027365,29.94166569442824,29.94166569452824,30.194649077484623,30.19464907758462,30.446819946999117,30.446819947099115,30.698011633527226,30.698011633627225,30.94909915165253,30.949099151752527,31.197290788179803,31.1972907882798,31.44537825630427,31.44537825640427,31.692299038317305,31.692299038417303,31.938553142552376,31.938553142652374,32.18466141102352,32.18466141112352,32.43008216803614,32.43008216813614,32.67485708095135,32.67485708105135,32.91877781296355,32.91877781306355,33.16234437240621,33.16234437250621,33.40447340789013,33.40447340799013,33.64433157219287,33.64433157229287,33.882314705245086,33.88231470534509,34.11963116051934,34.11963116061934,34.35467674461241,34.354676744712414,34.58924315405257,34.58924315415257,34.82368456140936,34.82368456150936,35.05462591043184,35.05462591053184,35.279712995216585,35.279712995316586,35.504237570626174,35.504237570726175,35.72822047034117,35.72822047044117,35.95170336172269,35.951703361822695,36.17504041734029,36.17504041744029,36.39768996149936,36.39768996159936,36.61908948482475,36.61908948492475,36.83944732412207,36.83944732422207,37.05676344605743,37.05676344615743,37.27337122285371,37.27337122295371,37.4888956482608,37.4888956483608,37.703503391723196,37.7035033918232,37.91734028900482,37.91734028910482,38.13113551892531,38.131135519025314,38.34438907315122,38.34438907325122,38.55443424057068,38.55443424067068,38.76291688194803,38.76291688204803,38.96964949415823,38.969649494258235,39.17561126018767,39.175611260287674,39.380239670661176,39.38023967076118,39.58278471307855,39.582784713178555,39.78439223987066,39.784392239970664,39.98520808680145,39.98520808690145,40.185982266371106,40.18598226647111,40.385923098718315,40.38592309881832,40.58571809530159,40.58571809540159,40.78482558042634,40.784825580526345,40.98389139818997,40.98389139828997,41.18239470657844,41.182394706678444,41.380293838230635,41.38029383833064,41.5779429657161,41.5779429658161,41.77350872514542,41.77350872524542,41.96526192103202,41.96526192113202,42.156556775946264,42.156556776046266,42.34776829613827,42.34776829623827,42.536333938898984,42.536333938998986,42.72079534658911,42.72079534668911,42.90459007650127,42.90459007660127,43.088322305371754,43.088322305471756,43.27124202070034,43.271242020800344,43.45347422457041,43.45347422467041,43.63506058434307,43.635060584443075,43.81587609793497,43.81587609803497,43.99654577576293,43.996545775862934,44.17711128518808,44.177111285288085,44.35717678627977,44.357176786379775,44.71691194853248,44.71691194863248,44.895831597193286,44.89583159729329,45.07464707745129,45.07464707755129,45.253420890348174,45.253420890448176,45.43029883831397,45.430298838413975,45.60651010850181,45.60651010860181,45.782221370356176,45.78222137045618,45.95791179852998,45.95791179862998,46.13266471107852,46.13266471117852,46.30593843230721,46.30593843240721,46.47871214520242,46.478712145302424,46.651110851847534,46.651110851947536,46.822426207103454,46.822426207203456,46.99299154985916,46.992991549959164,47.16353605893431,47.163536059034314,47.33353889231487,47.33353889241487,47.50235420590343,47.50235420600343,47.67021117018617,47.67021117028617,47.83783896398273,47.837838964082735,48.00542509041817,48.00542509051817,48.17261537692295,48.17261537702295,48.33828480474675,48.33828480484675,48.50349589159819,48.50349589169819,48.66864447740796,48.66864447750796,48.83329305488425,48.83329305498425,48.99746245770763,48.99746245780763,49.161611026850444,49.161611026950446,49.325697094951586,49.32569709505159,49.489678994649914,49.489678994749916,49.65361922698712,49.65361922708712,49.81741362356039,49.81741362366039,49.981020517008616,49.98102051710862,50.14441907365123,50.14441907375123,50.307775962932716,50.30777596303272,50.47100785013084,50.47100785023084,50.63417723628727,50.63417723638727,50.795784096401604,50.795784096501606,50.95712011866865,50.95712011876865,51.11828947149119,51.11828947159119,51.27868797813297,51.27868797823297,51.438711478524645,51.43871147862465,51.59794329905498,51.597943299154984,51.75646677444624,51.75646677454624,51.914511075184585,51.91451107528459,52.07201370022834,52.07201370032834,52.2293496558276,52.2293496559276,52.386602276704615,52.38660227680462,52.54268821147019,52.542688211570194,52.69875331255521,52.698753312655214,52.854651744195735,52.85465174429574,53.01002933382223,53.01002933392223,53.16521942032367,53.165219420423675,53.31974282904715,53.31974282914715,53.473599559992664,53.473599560092666,53.62716461941032,53.627164619510324,53.780625510425175,53.78062551052518,53.93373222887048,53.933732228970484,54.08660977682961,54.08660977692961,54.23938315638594,54.23938315648594,54.391823197053284,54.391823197153286,54.54409656827614,54.54409656837614,54.695807430123836,54.69580743022384,54.8473724562076,54.8473724563076,54.99891664861081,54.99891664871081,55.14939832330539,55.14939832340539,55.29917165286088,55.29917165296088,55.44840330672178,55.44840330682178,55.597009950165834,55.597009950265836,55.74549159152652,55.745491591626525,55.89359822663711,55.89359822673711,56.04041317355289,56.040413173652894,56.18681144685745,56.18681144695745,56.33266804446741,56.33266804456741,56.62371456190937,56.62371456200937,56.76882114701912,56.76882114711912,56.912636043934064,56.912636044034066,57.05630510508509,57.05630510518509,57.199494991583194,57.199494991683196,57.342247370789515,57.34224737088952,57.484541409023485,57.48454140912349,57.62583543059051,57.625835430690515,57.76692111535192,57.76692111545192,57.9077567959466,57.9077567960466,58.048425807096784,58.048425807196786,58.188219803663394,58.188219803763396,58.32743045717429,58.32743045727429,58.466474441240685,58.46647444134069,58.605330922182034,58.605330922282036,58.74406240104002,58.74406240114002,59.02096284938082,59.020962849480824,59.15844430740513,59.15844430750513,59.295446590776514,59.295446590876516,59.43236553942566,59.43236553952566,59.569242820713676,59.56924282081368,59.70549509158486,59.70549509168486,59.84153902565043,59.84153902575043,59.976957949299155,59.97695794939916,60.247629127152116,60.24762912725212,60.382423040384005,60.38242304048401,60.51709195153253,60.51709195163253,60.65163586059768,60.65163586069768,60.786138102301706,60.78613810240171,60.9204945082418,60.920494508341804,61.054225903765065,61.05422590386507,61.18781146352439,61.18781146362439,61.320980349672496,61.3209803497725,61.45306588443141,61.45306588453141,61.58488058134302,61.584880581443024,61.716591109851834,61.716591109951835,61.848009966832784,61.848009966932786,61.979366322772044,61.979366322872046,62.11055600926682,62.110556009366825,62.241266521108685,62.241266521208686,62.37156035933932,62.37156035943932,62.50164586076435,62.50164586086435,62.76104601743362,62.76104601753362,62.88981899698328,62.88981899708328,63.01765446090768,63.01765446100768,63.14507325122085,63.14507325132085,63.2715336922282,63.271533692328205,63.39795246587443,63.397952465974434,63.52410040167336,63.52410040177336,63.64995666594443,63.64995666604443,63.77564626077101,63.775646260871014,63.90119001983366,63.901190019933665,64.02644210736845,64.02644210746845,64.15034000566676,64.15034000576676,64.27407123452058,64.27407123462058,64.39740662344373,64.39740662354373,64.52070034500575,64.52070034510575,64.64349405823431,64.64349405833431,64.76622527042117,64.76622527052118,64.88874814580242,64.88874814590243,65.01125018750312,65.01125018760312,65.13354389239821,65.13354389249821,65.2555042584043,65.2555042585043,65.37742295704929,65.37742295714929,65.4991541525692,65.4991541526692,65.62057284288072,65.62057284298072,65.74169986166436,65.74169986176436,65.86263937732295,65.86263937742295,65.98345389089818,65.98345389099818,66.10414340239004,66.10414340249004,66.22477041284021,66.22477041294022,66.34531408856814,66.34531408866815,66.46567026117101,66.46567026127101,66.58494308238471,66.58494308248471,66.70386173102885,66.70386173112885,66.82182203036717,66.82182203046717,66.93942815713595,66.93942815723595,67.05659677661295,67.05659677671295,67.17370289504825,67.17370289514825,67.28887148119135,67.28887148129135,67.40387339788997,67.40387339798997,67.5187503125052,67.5187503126052,67.63248137468958,67.63248137478958,67.74617076951283,67.74617076961283,67.85967266121102,67.85967266131102,67.97265371089519,67.97265371099519,68.08534308905148,68.08534308915148,68.19799079984666,68.19799079994667,68.31059684328072,68.31059684338072,68.42295288254805,68.42295288264805,68.5352880881348,68.53528808823481,68.64728995483259,68.64728995493259,68.7590001500025,68.75900015010251,68.87006450107502,68.87006450117502,68.98100385006417,68.98100385016417,69.09177652960882,69.09177652970882,69.20196586609777,69.20196586619777,69.31213436890614,69.31213436900615,69.42192786546443,69.42192786556443,69.53132552209203,69.53132552219203,69.64051484191403,69.64051484201403,69.74920415340256,69.74920415350256,69.85658094301571,69.85658094311572,69.96391606526775,69.96391606536775,70.07114701911699,70.071147019217,70.28481724695412,70.28481724705412,70.39086068101135,70.39086068111135,70.49677911298522,70.49677911308522,70.60248920815347,70.60248920825347,70.70805346755779,70.70805346765779,70.81332605543426,70.81332605553426,70.91766112768546,70.91766112778546,71.02189203153385,71.02189203163385,71.12597709961832,71.12597709971833,71.22958299304989,71.22958299314989,71.43658644310739,71.43658644320739,71.5395673261221,71.5395673262221,71.64246487441457,71.64246487451457,71.74521658694312,71.74521658704312,71.84790579842998,71.84790579852998,71.9503450057501,71.9503450058501,72.05249254154236,72.05249254164237,72.15418173636228,72.15418173646228,72.25520425340423,72.25520425350423,72.35614343572392,72.35614343582392,72.45704095068251,72.45704095078251,72.55758429307156,72.55758429317156,72.65729428823813,72.65729428833814,72.75694178236304,72.75694178246304,72.85642260704346,72.85642260714346,72.95573676227937,72.95573676237937,73.05486341439024,73.05486341449024,73.15307338455641,73.15307338465641,73.25122085368089,73.2512208537809,73.34897248287471,73.34897248297472,73.44639077317956,73.44639077327956,73.54357989299821,73.54357989309821,73.64070651177519,73.6407065118752,73.73762479374656,73.73762479384656,73.83452224203737,73.83452224213737,73.93058634310572,73.93058634320572,74.02610876847947,74.02610876857948,74.12133952232537,74.12133952242537,74.21652860881015,74.21652860891015,74.31105101751696,74.31105101761696,74.40526092101535,74.40526092111536,74.49905415090251,74.49905415100251,74.68661977699628,74.68661977709628,74.78037133952232,74.78037133962232,74.87383123052051,74.87383123062051,74.96681194686577,74.96681194696578,75.05960516008601,75.05960516018601,75.15200253337555,75.15200253347555,75.33648477474624,75.33648477484624,75.42836130602177,75.42836130612177,75.52013366889449,75.52013366899449,75.61182269704496,75.61182269714496,75.70311588526475,75.70311588536475,75.79426323772063,75.79426323782063,75.88505641760696,75.88505641770696,75.97566209436825,75.97566209446825,76.06587193119886,76.06587193129886,76.15604010066835,76.15604010076835,76.3362306038434,76.3362306039434,76.42552375872931,76.42552375882931,76.51471274521242,76.51471274531242,76.60388089801496,76.60388089811497,76.69302821713696,76.69302821723696,76.78211303521725,76.78211303531725,76.87098951649195,76.87098951659195,76.95976182936383,76.95976182946383,77.04836747279121,77.04836747289121,77.13676477941299,77.13676477951299,77.22505791763196,77.22505791773196,77.31247604126736,77.31247604136736,77.3997066617777,77.3997066618777,77.48674977916299,77.486749779263,77.57331372189536,77.57331372199536,77.65977349622494,77.65977349632495,77.74589993166553,77.74589993176554,77.83181803030051,77.83181803040051,77.91744445740763,77.91744445750763,78.00296671611194,78.00296671621194,78.17374039567326,78.17374039577327,78.2588668144469,78.2588668145469,78.34347239120652,78.34347239130652,78.42791129852164,78.42791129862164,78.59633077217954,78.59633077227954,78.68012383539725,78.68012383549726,78.76375022917048,78.76375022927049,78.84725162086035,78.84725162096035,78.93071134518908,78.93071134528908,79.01408773479558,79.01408773489558,79.09729745495758,79.09729745505759,79.18048634143902,79.18048634153902,79.2635502258371,79.2635502259371,79.3462182703045,79.3462182704045,79.42863631060517,79.42863631070517,79.51092934882249,79.51092934892249,79.59320155335922,79.59320155345922,79.6754529242154,79.67545292431541,79.75741262354373,79.75741262364373,79.83899731662194,79.83899731672194,79.91993616560276,79.91993616570277,80.00035417256954,80.00035417266955,80.07993883231387,80.07993883241387,80.15900265004417,80.15900265014417,80.23787896464941,80.23787896474941,80.31583859730995,80.31583859740995,80.39369406156769,80.39369406166769,80.47142452374206,80.47142452384206,80.62655210920182,80.62655210930183,80.70359505991766,80.70359506001766,80.85747262454375,80.85747262464375,80.93401556692612,80.93401556702612,81.01047517458625,81.01047517468625,81.08691394856581,81.08691394866581,81.16320688678145,81.16320688688145,81.23922898714979,81.23922898724979,81.31481358022634,81.31481358032634,81.3894189903165,81.3894189904165,81.4636910615177,81.4636910616177,81.53792146535775,81.53792146545776,81.6113601893365,81.6113601894365,81.68463224387074,81.68463224397074,81.75723762062701,81.75723762072701,81.82959299321655,81.82959299331655,81.90188586476441,81.90188586486441,81.97380373006217,81.97380373016217,82.04565909431824,82.04565909441824,82.11697278287971,82.11697278297972,82.18818230303839,82.18818230313839,82.25897514958582,82.25897514968582,82.32953882564709,82.3295388257471,82.40006083434724,82.40006083444725,82.47049950832513,82.47049950842514,82.61116851947533,82.61116851957533,82.68116968616144,82.68116968626144,82.82092201536692,82.82092201546692,82.96036183936398,82.96036183946399,83.02990466507775,83.02990466517775,83.09848914148569,83.09848914158569,83.16705278421307,83.16705278431307,83.23549142485709,83.23549142495709,83.3034925582093,83.3034925583093,83.37145202420041,83.37145202430041,83.4393073217887,83.4393073218887,83.50691261521025,83.50691261531026,83.57430957182619,83.5743095719262,83.64147735795596,83.64147735805597,83.7084993083218,83.7084993084218,83.77541709028483,83.77541709038483,83.84204320072001,83.84204320082002,83.90862764379406,83.90862764389406,83.97504541742363,83.97504541752363,84.04102568376139,84.04102568386139,84.10615176919616,84.10615176929616,84.17123618726978,84.17123618736979,84.2362789379823,84.23627893808231,84.36601026683778,84.36601026693778,84.43055300921682,84.43055300931682,84.49478324638744,84.49478324648744,84.55893014883581,84.55893014893581,84.62293121552025,84.62293121562026,84.68680728012133,84.68680728022133,84.75064167736129,84.75064167746129,84.81408023467058,84.81408023477059,84.87737295621594,84.87737295631594,84.94043650727512,84.94043650737513,85.00333338888981,85.00333338898982,85.06573026217103,85.06573026227103,85.12781463024383,85.12781463034383,85.18981566359439,85.18981566369439,85.25173336222271,85.25173336232271,85.31352605876765,85.31352605886765,85.37498541642361,85.37498541652361,85.43640310671844,85.43640310681845,85.49757079284655,85.49757079294655,85.55850930848848,85.55850930858848,85.61911448524143,85.61911448534143,85.67926132102201,85.67926132112201,85.73930398839981,85.73930398849981,85.79913831897198,85.79913831907199,85.85880598009967,85.85880598019968,85.91818196969949,85.91818196979949,86.03664227737129,86.03664227747129,86.09549742495709,86.09549742505709,86.15399839997333,86.15399840007333,86.21241604026734,86.21241604036734,86.27079201320022,86.27079201330022,86.32791796529942,86.32791796539942,86.38487724795414,86.38487724805414,86.44104485074752,86.44104485084752,86.4969416156936,86.4969416157936,86.55281754695912,86.55281754705912,86.6080684678078,86.6080684679078,86.66319438657311,86.66319438667311,86.71809113485224,86.71809113495225,86.77296704945083,86.77296704955083,86.82736378939649,86.82736378949649,86.88142719045318,86.88142719055318,86.9354697578293,86.9354697579293,86.98926232103868,86.98926232113868,87.04284654744245,87.04284654754245,87.0963891064851,87.09638910658511,87.1499108318472,87.1499108319472,87.20295338255637,87.20295338265637,87.25595426590444,87.25595426600444,87.30891348189137,87.30891348199137,87.36141435690595,87.36141435700596,87.41383189719829,87.4138318972983,87.46597859964332,87.46597859974332,87.51795863264388,87.51795863274388,87.56964699411657,87.56964699421657,87.62116868614477,87.62116868624477,87.67214870247838,87.67214870257838,87.72256620943682,87.72256620953682,87.77294204903416,87.77294204913416,87.82275537925632,87.82275537935632,87.87252704211737,87.87252704221737,87.9217153619227,87.9217153620227,87.97071617860297,87.97071617870297,88.01963366056101,88.01963366066101,88.06844697411624,88.06844697421624,88.1172394539909,88.1172394540909,88.16578192969882,88.16578192979883,88.21378272971216,88.21378272981217,88.26122102035033,88.26122102045034,88.35601426690445,88.35601426700445,88.40318171969533,88.40318171979533,88.4502450040834,88.4502450041834,88.49726662111036,88.49726662121036,88.5441840697345,88.5441840698345,88.59062234370573,88.59062234380573,88.63653977566292,88.63653977576293,88.68237387289788,88.68237387299789,88.7276871281188,88.7276871282188,88.77285454757579,88.77285454767579,88.81766779446325,88.81766779456325,88.86243937398956,88.86243937408956,88.90719011983533,88.90719011993534,88.95179502991716,88.95179503001717,88.99635827263788,88.99635827273788,89.04081734695578,89.04081734705578,89.08521392023201,89.08521392033201,89.12948549142486,89.12948549152486,89.17369456157603,89.17369456167603,89.21769529492158,89.21769529502158,89.26152935882264,89.26152935892264,89.30486341439024,89.30486341449024,89.34811413523559,89.34811413533559,89.39109401823363,89.39109401833363,89.43369889498159,89.43369889508159,89.47590793179886,89.47590793189886,89.5601801696695,89.5601801697695,89.60207670127835,89.60207670137835,89.64380656344272,89.64380656354273,89.7688503141719,89.7688503142719,89.8100801680028,89.8100801681028,89.85110168502808,89.85110168512809,89.89201903365056,89.89201903375056,89.93283221387023,89.93283221397023,90.0143335722262,90.01433357232621,90.05495924932082,90.05495924942082,90.09543909065151,90.09543909075151,90.13539808996816,90.13539809006816,90.17519041984033,90.17519041994034,90.2147119118652,90.2147119119652,90.25392089868164,90.25392089878164,90.29302571709529,90.29302571719529,90.3320888681478,90.33208886824781,90.37094368239471,90.37094368249471,90.40967349455825,90.40967349465825,90.44834080568009,90.44834080578009,90.48690394839915,90.48690394849915,90.52538375639594,90.52538375649594,90.56373856230937,90.56373856240937,90.60203086718111,90.60203086728112,90.6401981699695,90.6401981700695,90.67765712761879,90.67765712771879,90.7525125418757,90.7525125419757,90.78982566376106,90.78982566386107,90.82703461724363,90.82703461734363,90.86422273704562,90.86422273714562,90.93855730928848,90.93855730938849,90.97562042700712,90.97562042710712,91.08676811280188,91.08676811290188,91.12370622843714,91.12370622853715,91.16039433990566,91.16039434000567,91.1969157819297,91.1969157820297,91.23339555659261,91.23339555669261,91.26962532708879,91.26962532718879,91.34179319655327,91.34179319665327,91.37771046184103,91.37771046194104,91.41350272504542,91.41350272514542,91.44904498408307,91.44904498418308,91.4845455757596,91.4845455758596,91.51975449590826,91.51975449600826,91.55458840980683,91.55458840990683,91.58927648794146,91.58927648804146,91.62390206503441,91.62390206513442,91.65848597476625,91.65848597486625,91.72752879214653,91.72752879224653,91.76194603243387,91.76194603253387,91.79617576959616,91.79617576969616,91.8303221720362,91.8303221721362,91.86426023767062,91.86426023777062,91.8981774696245,91.8981774697245,91.93201136685612,91.93201136695612,91.96580359672662,91.96580359682662,91.99957499291655,91.99957499301655,92.03317971966199,92.03317971976199,92.06668027800464,92.06668027810464,92.10013916898615,92.10013916908615,92.13334805580094,92.13334805590094,92.16624443740729,92.16624443750729,92.19899498324972,92.19899498334972,92.23162052700879,92.23162052710879,92.26422523708729,92.26422523718729,92.29668411140186,92.29668411150186,92.32901798363307,92.32901798373307,92.36091434857248,92.36091434867248,92.3922690378173,92.3922690379173,92.42324872081201,92.42324872091201,92.45408256804281,92.45408256814281,92.48464557742629,92.4846455775263,92.51510441840698,92.51510441850698,92.54543825730428,92.54543825740429,92.57573042884049,92.57573042894049,92.60600176669611,92.60600176679611,92.63612726878782,92.63612726888782,92.66621110351839,92.6662111036184,92.69606576776279,92.69606576786279,92.72587876464608,92.72587876474608,92.75562926048768,92.75562926058768,92.78506725112085,92.78506725122085,92.81442190703179,92.81442190713179,92.84371406190103,92.84371406200103,92.87296454940916,92.87296454950916,92.90211086851447,92.90211086861447,92.93123635393923,92.93123635403923,92.96034100568343,92.96034100578343,92.98929982166369,92.9892998217637,93.01811280188004,93.01811280198004,93.0469049484158,93.0469049485158,93.07559292654878,93.07559292664878,93.10413506891781,93.10413506901781,93.16117768629478,93.16117768639478,93.18963649394156,93.18963649404157,93.21805363422723,93.21805363432723,93.24617910298505,93.24617910308505,93.27413790229838,93.27413790239838,93.30151335855598,93.30151335865598,93.32870131168853,93.32870131178854,93.35570176169603,93.35570176179603,93.38268137802297,93.38268137812297,93.40949432490541,93.40949432500541,93.43616143602394,93.43616143612394,93.46245354089235,93.46245354099236,93.48868314471908,93.48868314481908,93.51466274437907,93.51466274447907,93.54060067667794,93.54060067677794,93.56616360272672,93.56616360282672,93.59168486141435,93.59168486151435,93.61699778329638,93.61699778339639,93.64228987149785,93.64228987159785,93.66756112601877,93.66756112611877,93.69272821213687,93.69272821223687,93.71787446457441,93.71787446467441,93.74281238020633,93.74281238030633,93.76764612743546,93.76764612753546,93.79245904098401,93.79245904108402,93.81700111668528,93.81700111678528,93.84135568926149,93.84135568936149,93.86562692711546,93.86562692721546,93.88971066184436,93.88971066194436,93.91377356289271,93.91377356299272,93.93775312921882,93.93775312931882,93.98569142819046,93.98569142829047,94.00929598826647,94.00929598836647,94.03287971466192,94.03287971476192,94.0564426073768,94.0564426074768,94.07996383273054,94.07996383283054,94.12673544559075,94.12673544569076,94.14996499941665,94.14996499951665,94.17315288588144,94.17315288598144,94.19600743345723,94.19600743355723,94.21877864631077,94.21877864641077,94.24144569076151,94.24144569086151,94.26388356472607,94.26388356482607,94.28627977132952,94.28627977142952,94.30861347689128,94.30861347699128,94.33071801196687,94.33071801206687,94.35267671127852,94.35267671137852,94.37448957482624,94.37448957492624,94.39619826997117,94.39619827007117,94.41761529358823,94.41761529368823,94.43880314671911,94.43880314681911,94.45994933248888,94.45994933258888,94.48090801513358,94.48090801523358,94.50172086201437,94.50172086211437,94.52247120785347,94.52247120795347,94.54307571792863,94.54307571802863,94.56355522592044,94.56355522602044,94.58397223287055,94.58397223297055,94.64518158635977,94.64518158645977,94.66530692178203,94.66530692188203,94.68528642144035,94.68528642154035,94.7048284138069,94.7048284139069,94.72424540409007,94.72424540419007,94.74364156069268,94.74364156079268,94.76299604993416,94.76299605003416,94.78201720028667,94.78201720038668,94.80095501591693,94.80095501601693,94.81955949265821,94.81955949275822,94.83814313571892,94.83814313581892,94.85645594093235,94.85645594103235,94.8746437440624,94.8746437441624,94.89231070517842,94.89231070527842,94.90981099684994,94.90981099694994,94.92729045484091,94.92729045494092,94.94439490658178,94.94439490668178,94.96147852464208,94.96147852474208,94.99539575659594,94.99539575669594,95.01212520208671,95.01212520218671,95.02837547292455,95.02837547302455,95.04443824063735,95.04443824073735,95.06008433473892,95.06008433483892,95.07556375939599,95.07556375949599,95.09093901565026,95.09093901575027,95.1062726045434,95.10627260464341,95.12156452607543,95.12156452617543,95.13666894448241,95.13666894458241,95.15166919448657,95.15166919458657,95.1665236087268,95.16652360882681,95.18102385039751,95.18102385049751,95.19548242470708,95.19548242480708,95.20992016533609,95.20992016543609,95.2242537375623,95.2242537376623,95.25290004833414,95.25290004843414,95.2671502858381,95.2671502859381,95.28127552125869,95.2812755213587,95.29531742195704,95.29531742205704,95.309234320572,95.309234320672,95.32313038550643,95.32313038560643,95.33698478307971,95.33698478317972,95.35029750495842,95.35029750505842,95.363568559476,95.363568559576,95.376818780313,95.376818780413,95.38967316121935,95.38967316131935,95.4024233737229,95.4024233738229,95.4150902515042,95.4150902516042,95.42761129352157,95.42761129362157,95.44000733345555,95.44000733355556,95.45192419873665,95.45192419883665,95.46382023033718,95.46382023043718,95.47567459457657,95.47567459467658,95.48748729145485,95.48748729155486,95.49921665361089,95.49921665371089,95.510800180003,95.510800180103,95.52225870431174,95.52225870441174,95.53369639493991,95.53369639503991,95.54507158452641,95.54507158462641,95.5677594626577,95.5677594627577,95.57882214703578,95.57882214713578,95.58973899564992,95.58973899574993,95.60051000850014,95.60051000860014,95.6112601876698,95.6112601877698,95.62186453107552,95.62186453117552],[0.0,1e-10,2.9584243070717844,2.9584243071717844,5.88893148219137,5.88893148229137,8.540746512441874,8.540746512541874,10.979120485341422,10.979120485441422,13.17326122102035,13.17326122112035,15.328588809813496,15.328588809913496,17.482228870481176,17.482228870581174,19.609826830447176,19.609826830547174,21.559192653210886,21.559192653310884,23.47253704228404,23.472537042384037,25.27219203653394,25.27219203663394,26.958532642210702,26.9585326423107,28.61733112218537,28.617331122285368,30.264900248337472,30.26490024843747,31.834884748079133,31.83488474817913,33.26545025750429,33.26545025760429,34.66591109851831,34.66591109861831,35.937119785329756,35.93711978542976,37.177036283938065,37.17703628403807,38.413577726295436,38.41357772639544,39.63234803913399,39.63234803923399,40.80436757279288,40.80436757289288,41.94032400540009,41.940324005500095,43.07121785363089,43.07121785373089,44.18848647477458,44.18848647487458,45.28581726362106,45.285817263721064,46.36837697294955,46.36837697304955,47.40841514025234,47.40841514035234,48.43486974782913,48.434869747929135,49.39378156302605,49.393781563126055,50.34090151502525,50.34090151512525,51.26314605243421,51.26314605253421,52.15893181553026,52.15893181563026,53.05425923765396,53.05425923775396,53.946461607693465,53.946461607793466,54.82841380689678,54.828413806996785,55.67990716511942,55.67990716521942,56.516941949032486,56.51694194913249,57.34535158919315,57.34535158929315,58.17259454324239,58.17259454334239,58.99219153652561,58.99219153662561,59.7470791179853,59.7470791180853,60.49625827097118,60.496258271071184,61.232812213536896,61.2328122136369,61.964032733878895,61.9640327339789,62.68610726845447,62.68610726855447,63.366493608226804,63.366493608326806,64.03502558375973,64.03502558385973,64.7005158419307,64.7005158420307,65.35927682128036,65.35927682138036,66.01135018916982,66.01135018926982,66.62419373656228,66.62419373666228,67.22401623360389,67.22401623370389,67.78848397473291,67.78848397483291,68.33472224537076,68.33472224547076,68.8765437757296,68.8765437758296,69.39640660677678,69.39640660687678,69.91289438157303,69.91289438167303,70.42011116851947,70.42011116861947,70.9214111901865,70.9214111902865,71.42037783963066,71.42037783973066,71.90715678594643,71.90715678604643,72.3931232187203,72.3931232188203,72.86919365322755,72.86919365332756,73.33065967766129,73.33065967776129,73.78129218820314,73.78129218830314,74.22836213936898,74.22836213946898,74.673619560326,74.673619560426,75.10196003266721,75.10196003276721,75.52590459840998,75.52590459850998,75.94953665894431,75.94953665904431,76.36723112051868,76.36723112061868,76.7810088501475,76.7810088502475,77.17603626727112,77.17603626737112,77.55766762779379,77.55766762789379,77.93725728762146,77.93725728772147,78.3140552342539,78.3140552343539,78.67833213886898,78.67833213896898,79.03996316605277,79.03996316615277,79.39961499358323,79.39961499368323,79.75732928882148,79.75732928892148,80.1117726962116,80.1117726963116,80.45990349839164,80.45990349849164,80.8062426040434,80.8062426041434,81.13933148885815,81.13933148895815,81.45077417956966,81.45077417966966,81.74625827097118,81.74625827107118,82.03620060334339,82.03620060344339,82.31864281071351,82.31864281081351,82.60096001600027,82.60096001610027,82.87965216086934,82.87965216096934,83.14780246337439,83.14780246347439,83.41409856830947,83.41409856840947,83.67747795796596,83.67747795806596,83.94023233720561,83.94023233730562,84.20079917998633,84.20079918008634,84.46065767762796,84.46065767772797,84.7170577842964,84.7170577843964,84.97160369339488,84.97160369349488,85.22242037367289,85.22242037377289,85.47250787513126,85.47250787523126,85.72042867381123,85.72042867391123,85.96322438707311,85.96322438717311,86.20424923748729,86.20424923758729,86.44023233720561,86.44023233730562,86.67602793379889,86.6760279338989,86.90878181303022,86.90878181313022,87.13318138635644,87.13318138645644,87.34778912981884,87.34778912991884,87.55783429723829,87.55783429733829,87.7642960716012,87.7642960717012,87.96684111401856,87.96684111411857,88.16367772796214,88.16367772806214,88.35497258287639,88.35497258297639,88.54618410306838,88.54618410316839,88.7249995833264,88.7249995834264,88.90377339622327,88.90377339632327,89.07881798029968,89.07881798039968,89.25159169319488,89.25159169329488,89.42169869497825,89.42169869507825,89.5862639377323,89.5862639378323,89.75041250687511,89.75041250697511,89.90845680761346,89.90845680771346,90.06468857814296,90.06468857824296,90.22077451290855,90.22077451300855,90.37596459941,90.37596459951,90.52959215986932,90.52959215996933,90.6811571859531,90.6811571860531,90.82701378356306,90.82701378366306,90.97082868047801,90.97082868057801,91.11358105968432,91.11358105978432,91.25106251770863,91.25106251780863,91.38631477191286,91.38631477201287,91.51990033167219,91.51990033177219,91.65109001816697,91.65109001826697,91.77388373139553,91.77388373149553,91.89640660677678,91.89640660687678,92.0181378022967,92.01813780239671,92.1390773179553,92.1390773180553,92.25989183153052,92.25989183163053,92.38037300621677,92.38037300631677,92.48977066284438,92.48977066294438,92.59266821113685,92.59266821123686,92.69081568026134,92.69081568036134,92.78800480008,92.78800480018,92.88492308205137,92.88492308215137,92.97871631193853,92.97871631203853,93.06805113418557,93.06805113428557,93.15376089601493,93.15376089611493,93.23938732312205,93.23938732322205,93.3228470474508,93.3228470475508,93.4037858964316,93.4037858965316,93.48024550409174,93.48024550419174,93.55626760446007,93.55626760456008,93.62670627843798,93.62670627853798,93.69312405206753,93.69312405216753,93.75870847847465,93.75870847857465,93.82379289654827,93.82379289664827,93.88883564726079,93.88883564736079,93.95298254970916,93.95298254980916,94.0169836163936,94.0169836164936,94.08081801363356,94.08081801373356,94.14463157719295,94.14463157729296,94.20663261054351,94.20663261064351,94.26784196403274,94.26784196413274,94.32767629460491,94.32767629470491,94.3865314421907,94.3865314422907,94.44178236303938,94.44178236313938,94.49330405506758,94.49330405516758,94.54372156202604,94.54372156212604,94.5935348922482,94.5935348923482,94.63813980233004,94.63813980243005,94.68253637560626,94.68253637570626,94.72587043117386,94.72587043127386,94.76776696278272,94.76776696288272,94.80935098918316,94.80935098928316,94.85016416940282,94.85016416950282,94.88762312705212,94.88762312715212,94.92456124268737,94.92456124278738,94.96047850797514,94.96047850807514,94.99393739895665,94.99393739905665,95.02477124618744,95.02477124628744,95.05504258404306,95.05504258414307,95.08489724828748,95.08489724838748,95.11368939482325,95.11368939492326,95.14218986983117,95.14218986993117,95.1691694861581,95.1691694862581,95.19583659727662,95.19583659737663,95.22181619693662,95.22181619703662,95.24617076951283,95.24617076961283,95.27012950215837,95.27012950225837,95.29371322855381,95.29371322865381,95.31727612126869,95.31727612136869,95.34079734662244,95.34079734672244,95.36365189419824,95.36365189429824,95.38631893864898,95.38631893874899,95.40875681261355,95.40875681271355,95.43115301921699,95.431153019317,95.45348672477874,95.45348672487874,95.47559125985433,95.47559125995433,95.49754995916598,95.49754995926598,95.51936282271372,95.51936282281372,95.54107151785863,95.54107151795863,95.56248854147569,95.56248854157569,95.58367639460657,95.58367639470657,95.60482258037634,95.60482258047634,95.62578126302105,95.62578126312106,95.64659410990183,95.64659411000183,95.66734445574093,95.66734445584093,95.68794896581609,95.68794896591609,95.7084284738079,95.7084284739079,95.72884548075801,95.72884548085801,95.79005483424724,95.79005483434725,95.8101801696695,95.8101801697695,95.83015966932783,95.83015966942783,95.84970166169437,95.84970166179437,95.86911865197753,95.86911865207753,95.88851480858014,95.88851480868014,95.90786929782163,95.90786929792164,95.92689044817413,95.92689044827414,95.9458282638044,95.9458282639044,95.96443274054567,95.96443274064568,95.9830163836064,95.9830163837064,96.00132918881981,96.00132918891981,96.01951699194987,96.01951699204987,96.03718395306588,96.03718395316588,96.05468424473742,96.05468424483742,96.07216370272837,96.07216370282838,96.08926815446924,96.08926815456924,96.10635177252954,96.10635177262954,96.14026900448341,96.14026900458342,96.15699844997417,96.15699845007417,96.17324872081201,96.17324872091201,96.18931148852481,96.18931148862481,96.20495758262638,96.20495758272638,96.22043700728345,96.22043700738345,96.23581226353772,96.23581226363773,96.25114585243088,96.25114585253088,96.2664377739629,96.26643777406291,96.28154219236987,96.28154219246987,96.29654244237403,96.29654244247403,96.31139685661428,96.31139685671428,96.32589709828497,96.32589709838497,96.34035567259454,96.34035567269454,96.35479341322355,96.35479341332355,96.36912698544975,96.36912698554976,96.3977732962216,96.3977732963216,96.41202353372556,96.41202353382556,96.42614876914615,96.42614876924615,96.4401906698445,96.4401906699445,96.45410756845948,96.45410756855948,96.46800363339389,96.4680036334939,96.48185803096719,96.48185803106719,96.49517075284588,96.49517075294588,96.50844180736345,96.50844180746346,96.52169202820048,96.52169202830048,96.53454640910682,96.53454640920683,96.54729662161036,96.54729662171036,96.55996349939166,96.55996349949166,96.57248454140903,96.57248454150903,96.58488058134303,96.58488058144303,96.59679744662411,96.59679744672411,96.60869347822464,96.60869347832464,96.62054784246403,96.62054784256404,96.63236053934233,96.63236053944233,96.64408990149836,96.64408990159836,96.65567342789046,96.65567342799046,96.6671319521992,96.6671319522992,96.67856964282738,96.67856964292739,96.68994483241387,96.68994483251387,96.71263271054518,96.71263271064518,96.72369539492325,96.72369539502326,96.7346122435374,96.7346122436374,96.74538325638761,96.74538325648761,96.75613343555726,96.75613343565726,96.76673777896298,96.76673777906298],[0.0,1e-10,4.569242820713678,4.569242820813678,8.9178777979633,8.9178777980633,13.129802163369389,13.129802163469389,16.68523642060701,16.685236420707007,20.11591859864331,20.11591859874331,22.827026283771396,22.827026283871394,25.233295554925917,25.233295555025915,27.455061751029184,27.455061751129183,29.599493324888748,29.599493324988746,31.727945465757763,31.72794546585776,33.703728395473256,33.70372839557326,35.661198519975336,35.66119852007534,37.579042984049735,37.57904298414974,39.38598976649611,39.38598976659611,41.121602026700444,41.121602026800446,42.776712945215756,42.77671294531576,44.17115285254754,44.171152852647545,45.549029983833066,45.54902998393307,46.92126118768646,46.92126118778646,48.2444290738179,48.2444290739179,49.56630527175453,49.56630527185453,50.86159769329489,50.86159769339489,52.11307688461474,52.113076884714744,53.36197269954499,53.361972699644994,54.541471524525406,54.54147152462541,55.68334472241204,55.68334472251204,56.79750912515209,56.79750912525209,57.88392306538442,57.883923065484424,58.9703161719362,58.9703161720362,60.036563109385156,60.03656310948516,61.04660077667961,61.04660077677961,62.048971649527495,62.0489716496275,62.97436207270121,62.97436207280121,63.890856514275235,63.89085651437524,64.78395473257888,64.78395473267888,65.66805280088002,65.66805280098002,66.54283821397023,66.54283821407023,67.41697778296304,67.41697778306305,68.17915715261921,68.17915715271921,68.94079484658077,68.94079484668077,69.68130718845315,69.68130718855315,70.4167569459491,70.4167569460491,71.12487291454858,71.12487291464858,71.82944715745262,71.82944715755262,72.47791629860498,72.47791629870498,73.12605210086835,73.12605210096835,73.76300021667028,73.76300021677028,74.39615660261005,74.39615660271005,74.99945832430541,74.99945832440541,75.59650994183237,75.59650994193237,76.18049884164736,76.18049884174737,76.69627827130452,76.69627827140452,77.19734912248538,77.19734912258538,77.69729495491592,77.69729495501592,78.18065717761962,78.18065717771962,78.65695678261304,78.65695678271304,79.1083393056551,79.1083393057551,79.55307588459807,79.55307588469807,79.9717078617977,79.9717078618977,80.3870064501075,80.38700645020751,80.80218003633394,80.80218003643394,81.21004100068335,81.21004100078335,81.592005700095,81.592005700195,81.95132418873648,81.95132418883648,82.30937182286371,82.30937182296371,82.66323188719812,82.66323188729812,83.01646694111568,83.01646694121568,83.36909781829698,83.36909781839698,83.71783279721329,83.71783279731329,84.06540109001817,84.06540109011817,84.40932348872481,84.40932348882481,84.745954099235,84.745954099335,85.07958465974433,85.07958465984433,85.40365256087601,85.40365256097601,85.72322038700645,85.72322038710645,86.03485058084301,86.03485058094302,86.34273071217854,86.34273071227854,86.64111068517809,86.6411106852781,86.93201136685612,86.93201136695612,87.21734945582426,87.21734945592426,87.49685411423523,87.49685411433524,87.77100451674194,87.77100451684194,88.03684228070468,88.03684228080468,88.29038817313622,88.29038817323622,88.54103818396973,88.54103818406973,88.78900065001083,88.78900065011084,89.03479641327355,89.03479641337356,89.27280038000633,89.27280038010633,89.50853347555793,89.50853347565793,89.74178736312273,89.74178736322273,89.97485374756246,89.97485374766246,90.19691994866581,90.19691994876581,90.39911081851365,90.39911081861365,90.59096818280305,90.59096818290305,90.7809088484808,90.78090884858081,90.96953699228321,90.96953699238321,91.15645677427958,91.15645677437958,91.3373556225937,91.3373556226937,91.51273354555909,91.51273354565909,91.68765312755212,91.68765312765213,91.8592601543359,91.8592601544359,92.02942965716095,92.02942965726095,92.19686994783247,92.19686994793247,92.35603926732112,92.35603926742112,92.51437523958732,92.51437523968733,92.66885698094968,92.66885698104969,92.82127618793646,92.82127618803646,92.97365372756212,92.97365372766212,93.12559375989599,93.125593759996,93.2714295238254,93.2714295239254,93.41678611310188,93.41678611320188,93.56078851314189,93.56078851324189,93.70427007116785,93.70427007126786,93.84079317988633,93.84079317998633,93.97504541742363,93.97504541752363,94.10206836780613,94.10206836790613,94.22688294804914,94.22688294814914,94.3427182119702,94.3427182120702,94.44230320505342,94.44230320515342,94.53761729362157,94.53761729372157,94.63074384573076,94.63074384583076,94.72299538325639,94.72299538335639,94.81403856730945,94.81403856740945,94.90295671594527,94.90295671604527,94.97816630277171,94.97816630287171,95.05000083334723,95.05000083344723,95.12106451774196,95.12106451784196,95.19077401290022,95.19077401300022,95.25887931465525,95.25887931475525,95.32202620043667,95.32202620053667,95.38313138552309,95.38313138562309,95.44334072234537,95.44334072244537,95.49807080118002,95.49807080128002,95.55130085501425,95.55130085511425,95.60267671127852,95.60267671137852,95.64988583143052,95.64988583153053,95.69378239637328,95.69378239647328,95.73503308388473,95.73503308398473,95.77615876931281,95.77615876941282,95.81074267904465,95.81074267914465,95.84386823113718,95.84386823123718,95.8732853880898,95.8732853881898,95.90230670511176,95.90230670521176,95.93086968116135,95.93086968126136,95.95803680061334,95.95803680071334,95.98224553742563,95.98224553752563,96.0062459374323,96.0062459375323,96.02893381556359,96.02893381566359,96.05066334438908,96.05066334448908,96.06797613293556,96.06797613303556,96.08412223537059,96.08412223547059,96.09983083051384,96.09983083061384,96.1144560742679,96.11445607436791,96.1288521475358,96.1288521476358,96.14114401906699,96.14114401916699,96.15301921698695,96.15301921708695,96.16360272671211,96.16360272681212]],"coord_y":[[171927,171927,171927,171261,171261,146782,146782,130087,130087,125923,125923,120757,120757,110113,110113,100683,100683,94587,94587,94326,94326,86559,86559,86505,86505,83692,83692,78500,78500,75851,75851,74583,74583,70983,70983,69062,69062,66259,66259,66128,66128,63686,63686,59796,59796,58473,58473,58279,58279,55329,55329,52438,52438,49739,49739,47648,47648,44609,44609,42412,42412,42127,42127,41162,41162,40514,40514,40050,40050,37248,37248,36673,36673,34011,34011,33993,33993,31729,31729,30476,30476,30272,30272,30167,30167,30162,30162,30023,30023,30000,30000,29444,29444,28762,28762,28641,28641,28479,28479,28336,28336,27007,27007,26322,26322,25699,25699,24808,24808,23206,23206,22690,22690,22468,22468,22069,22069,21662,21662,21632,21632,21436,21436,20887,20887,20691,20691,20167,20167,19044,19044,18769,18769,18397,18397,18208,18208,17404,17404,16740,16740,16640,16640,16588,16588,16151,16151,15873,15873,15185,15185,14849,14849,14790,14790,14541,14541,14377,14377,14297,14297,14176,14176,14133,14133,14100,14100,14034,14034,13790,13790,13516,13516,12787,12787,12341,12341,12149,12149,12093,12093,11710,11710,11660,11660,11610,11610,11024,11024,11005,11005,10975,10975,10850,10850,10675,10675,10514,10514,10496,10496,10016,10016,9820,9820,9783,9783,9780,9780,9725,9725,9674,9674,9427,9427,9365,9365,9088,9088,9085,9085,8979,8979,8928,8928,8926,8926,8670,8670,8533,8533,8506,8506,8457,8457,8369,8369,8117,8117,7922,7922,7910,7910,7875,7875,7860,7860,7780,7780,7744,7744,7497,7497,7364,7364,7306,7306,7288,7288,7205,7205,7132,7132,7089,7089,7086,7086,7001,7001,6730,6730,6667,6667,6655,6655,6571,6571,6279,6279,6076,6076,6006,6006,5910,5910,5484,5484,5382,5382,5341,5341,5226,5226,5209,5209,5157,5157,5054,5054,4973,4973,4966,4966,4934,4934,4899,4899,4846,4846,4802,4802,4765,4765,4673,4673,4479,4479,4422,4422,4310,4310,4269,4269,4161,4161,4009,4009,3995,3995,3986,3986,3941,3941,3879,3879,3718,3718,3610,3610,3494,3494,3434,3434,3409,3409,3304,3304,3282,3282,3252,3252,3172,3172,3087,3087,2979,2979,2836,2836,2804,2804,2599,2599,2564,2564,2473,2473,2198,2198,2129,2129,1956,1956,1897,1897,1860,1860,1791,1791,1692,1692,1659,1659,1508,1508,1467,1467,1464,1464,1388,1388,1203,1203,1150,1150,1043,1043,1041,1041,1025,1025,1024,1024,1014,1014,1004,1004,0.0],[112538,112538,112538,82998,82998,77676,77676,72015,72015,69478,69478,65543,65543,64723,64723,63599,63599,60381,60381,58557,58557,58117,58117,52718,52718,51448,51448,50178,50178,48997,48997,48088,48088,45969,45969,43575,43575,42960,42960,41595,41595,41568,41568,41325,41325,39132,39132,38117,38117,36845,36845,36746,36746,36064,36064,35754,35754,34300,34300,33662,33662,31818,31818,31673,31673,31600,31600,30135,30135,29812,29812,29565,29565,29327,29327,29199,29199,28860,28860,28720,28720,28684,28684,28549,28549,28208,28208,27865,27865,27494,27494,27066,27066,26936,26936,25435,25435,25345,25345,24827,24827,24698,24698,24543,24543,24340,24340,23740,23740,23728,23728,23696,23696,22892,22892,22752,22752,22712,22712,21987,21987,21117,21117,20665,20665,20130,20130,20118,20118,20096,20096,19974,19974,19812,19812,19760,19760,19041,19041,19034,19034,18953,18953,18810,18810,17846,17846,17633,17633,17561,17561,17455,17455,17394,17394,17079,17079,16773,16773,16772,16772,16735,16735,16731,16731,16621,16621,16604,16604,16466,16466,16366,16366,16158,16158,16123,16123,16038,16038,15890,15890,15875,15875,15747,15747,15440,15440,15291,15291,15188,15188,15174,15174,15056,15056,14722,14722,14503,14503,14480,14480,14409,14409,14163,14163,14102,14102,14045,14045,13884,13884,13789,13789,13784,13784,13759,13759,13741,13741,13703,13703,13378,13378,13372,13372,13337,13337,13269,13269,13203,13203,13180,13180,13166,13166,13006,13006,12846,12846,12825,12825,12668,12668,12657,12657,12591,12591,12354,12354,12291,12291,12195,12195,12135,12135,12082,12082,11925,11925,11815,11815,11805,11805,11675,11675,11651,11651,11437,11437,11345,11345,11266,11266,11251,11251,11247,11247,11194,11194,11122,11122,10891,10891,10626,10626,10622,10622,10520,10520,10442,10442,10356,10356,10315,10315,10292,10292,10037,10037,10028,10028,9972,9972,9870,9870,9816,9816,9791,9791,9655,9655,9595,9595,9511,9511,9382,9382,9225,9225,9208,9208,9172,9172,9120,9120,9076,9076,9003,9003,8992,8992,8924,8924,8866,8866,8849,8849,8844,8844,8797,8797,8736,8736,8642,8642,8610,8610,8585,8585,8565,8565,8514,8514,8407,8407,8357,8357,8249,8249,8194,8194,7948,7948,7760,7760,7710,7710,7602,7602,7467,7467,7465,7465,7350,7350,7298,7298,7133,7133,7111,7111,6980,6980,6971,6971,6966,6966,6950,6950,6895,6895,6824,6824,6755,6755,6628,6628,6573,6573,6535,6535,6475,6475,6451,6451,6405,6405,6350,6350,6339,6339,6332,6332,6276,6276,6186,6186,6174,6174,6087,6087,6061,6061,6043,6043,5956,5956,5866,5866,5785,5785,5755,5755,5708,5708,5640,5640,5635,5635,5373,5373,5252,5252,5215,5215,5209,5209,5166,5166,5134,5134,5065,5065,5048,5048,5038,5038,5018,5018,4862,4862,4838,4838,4806,4806,4765,4765,4750,4750,4746,4746,4744,4744,4729,4729,4714,4714,4689,4689,4685,4685,4579,4579,4525,4525,4478,4478,4461,4461,4422,4422,4416,4416,4335,4335,4315,4315,4174,4174,4020,4020,3997,3997,3986,3986,3948,3948,3848,3848,3846,3846,3748,3748,3729,3729,3718,3718,3709,3709,3689,3689,3688,3688,3629,3629,3585,3585,3522,3522,3448,3448,3442,3442,3435,3435,3255,3255,3252,3252,3239,3239,3219,3219,3198,3198,3105,3105,3083,3083,3064,3064,3013,3013,2981,2981,2965,2965,2962,2962,2941,2941,2876,2876,2873,2873,2866,2866,2862,2862,2848,2848,2843,2843,2812,2812,2768,2768,2715,2715,2684,2684,2676,2676,2672,2672,2671,2671,2668,2668,2612,2612,2593,2593,2579,2579,2567,2567,2564,2564,2541,2541,2505,2505,2480,2480,2473,2473,2442,2442,2280,2280,2261,2261,2246,2246,2217,2217,2203,2203,2190,2190,2188,2188,2153,2153,2129,2129,2092,2092,1970,1970,1803,1803,1769,1769,1754,1754,1730,1730,1683,1683,1654,1654,1634,1634,1622,1622,1613,1613,1546,1546,1481,1481,1449,1449,1408,1408,1397,1397,1360,1360,1359,1359,1354,1354,1322,1322,1310,1310,1223,1223,1222,1222,1172,1172,1156,1156,1071,1071,1050,1050,1041,1041,1012,1012,0.0],[31311,31311,31311,28101,28101,27448,27448,27046,27046,26093,26093,24310,24310,24297,24297,24220,24220,23745,23745,23680,23680,22641,22641,22150,22150,21930,21930,21372,21372,20345,20345,20142,20142,20131,20131,20049,20049,19923,19923,19844,19844,19768,19768,19297,19297,19295,19295,19282,19282,19022,19022,18753,18753,18742,18742,18118,18118,17581,17581,17530,17530,17483,17483,17435,17435,17339,17339,17294,17294,17148,17148,16655,16655,16621,16621,16573,16573,16268,16268,16091,16091,15793,15793,15745,15745,15594,15594,15551,15551,15503,15503,15375,15375,15206,15206,15160,15160,15151,15151,14834,14834,14796,14796,14651,14651,14619,14619,14587,14587,14566,14566,14333,14333,14183,14183,14159,14159,14101,14101,14021,14021,13980,13980,13907,13907,13870,13870,13750,13750,13657,13657,13655,13655,13434,13434,13377,13377,13212,13212,13207,13207,13185,13185,13097,13097,13047,13047,13008,13008,12918,12918,12871,12871,12848,12848,12782,12782,12642,12642,12638,12638,12411,12411,12327,12327,12201,12201,12151,12151,12143,12143,12104,12104,12057,12057,12052,12052,11913,11913,11908,11908,11852,11852,11820,11820,11813,11813,11780,11780,11749,11749,11708,11708,11691,11691,11622,11622,11513,11513,11423,11423,11391,11391,11282,11282,11259,11259,11253,11253,11085,11085,10804,10804,10777,10777,10751,10751,10727,10727,10720,10720,10687,10687,10627,10627,10577,10577,10431,10431,10397,10397,10345,10345,10301,10301,10264,10264,10262,10262,10236,10236,10082,10082,10007,10007,9923,9923,9886,9886,9822,9822,9722,9722,9677,9677,9639,9639,9637,9637,9597,9597,9590,9590,9557,9557,9555,9555,9528,9528,9499,9499,9487,9487,9387,9387,9204,9204,9182,9182,9178,9178,9051,9051,8854,8854,8822,8822,8819,8819,8780,8780,8747,8747,8716,8716,8679,8679,8672,8672,8667,8667,8643,8643,8624,8624,8588,8588,8583,8583,8581,8581,8490,8490,8458,8458,8434,8434,8433,8433,8388,8388,8317,8317,8293,8293,8275,8275,8223,8223,8187,8187,8186,8186,8160,8160,8103,8103,8057,8057,8046,8046,8044,8044,8025,8025,7952,7952,7930,7930,7927,7927,7903,7903,7880,7880,7879,7879,7876,7876,7871,7871,7869,7869,7862,7862,7853,7853,7843,7843,7841,7841,7835,7835,7832,7832,7757,7757,7744,7744,7736,7736,7699,7699,7681,7681,7643,7643,7609,7609,7586,7586,7560,7560,7552,7552,7548,7548,7492,7492,7491,7491,7483,7483,7458,7458,7449,7449,7417,7417,7385,7385,7371,7371,7366,7366,7349,7349,7338,7338,7333,7333,7317,7317,7309,7309,7282,7282,7275,7275,7274,7274,7223,7223,7189,7189,7163,7163,7133,7133,7127,7127,7109,7109,7047,7047,7027,7027,7001,7001,6969,6969,6965,6965,6903,6903,6896,6896,6873,6873,6852,6852,6830,6830,6782,6782,6772,6772,6760,6760,6752,6752,6710,6710,6682,6682,6674,6674,6665,6665,6659,6659,6632,6632,6599,6599,6576,6576,6572,6572,6570,6570,6540,6540,6530,6530,6500,6500,6492,6492,6470,6470,6464,6464,6458,6458,6456,6456,6449,6449,6419,6419,6412,6412,6392,6392,6340,6340,6327,6327,6322,6322,6308,6308,6305,6305,6297,6297,6274,6274,6254,6254,6244,6244,6207,6207,6181,6181,6136,6136,6116,6116,6070,6070,6068,6068,6055,6055,6041,6041,6033,6033,6026,6026,6012,6012,5947,5947,5939,5939,5920,5920,5918,5918,5894,5894,5891,5891,5881,5881,5880,5880,5870,5870,5854,5854,5852,5852,5843,5843,5828,5828,5814,5814,5805,5805,5799,5799,5793,5793,5790,5790,5786,5786,5777,5777,5725,5725,5708,5708,5662,5662,5645,5645,5624,5624,5621,5621,5528,5528,5520,5520,5514,5514,5459,5459,5457,5457,5448,5448,5423,5423,5409,5409,5407,5407,5405,5405,5393,5393,5392,5392,5376,5376,5362,5362,5331,5331,5325,5325,5317,5317,5289,5289,5288,5288,5270,5270,5251,5251,5241,5241,5217,5217,5154,5154,5152,5152,5147,5147,5109,5109,5090,5090,5084,5084,5074,5074,5067,5067,5053,5053,5008,5008,5003,5003,4996,4996,4973,4973,4963,4963,4943,4943,4939,4939,4932,4932,4929,4929,4917,4917,4903,4903,4881,4881,4849,4849,4845,4845,4843,4843,4826,4826,4786,4786,4783,4783,4775,4775,4767,4767,4758,4758,4714,4714,4711,4711,4692,4692,4676,4676,4665,4665,4662,4662,4652,4652,4651,4651,4611,4611,4585,4585,4571,4571,4569,4569,4537,4537,4522,4522,4502,4502,4501,4501,4500,4500,4486,4486,4463,4463,4454,4454,4435,4435,4420,4420,4410,4410,4405,4405,4401,4401,4382,4382,4375,4375,4358,4358,4349,4349,4330,4330,4328,4328,4321,4321,4286,4286,4281,4281,4280,4280,4279,4279,4276,4276,4266,4266,4261,4261,4253,4253,4243,4243,4238,4238,4196,4196,4187,4187,4178,4178,4155,4155,4150,4150,4134,4134,4124,4124,4110,4110,4105,4105,4092,4092,4086,4086,4061,4061,4053,4053,4031,4031,4022,4022,4014,4014,4008,4008,4006,4006,4002,4002,3994,3994,3993,3993,3987,3987,3968,3968,3956,3956,3950,3950,3949,3949,3948,3948,3934,3934,3916,3916,3885,3885,3860,3860,3820,3820,3795,3795,3786,3786,3742,3742,3737,3737,3731,3731,3715,3715,3698,3698,3688,3688,3674,3674,3670,3670,3669,3669,3662,3662,3649,3649,3628,3628,3581,3581,3565,3565,3563,3563,3525,3525,3517,3517,3485,3485,3473,3473,3470,3470,3452,3452,3449,3449,3423,3423,3418,3418,3398,3398,3387,3387,3385,3385,3381,3381,3371,3371,3360,3360,3348,3348,3345,3345,3338,3338,3292,3292,3291,3291,3285,3285,3264,3264,3262,3262,3257,3257,3245,3245,3235,3235,3224,3224,3217,3217,3212,3212,3198,3198,3196,3196,3188,3188,3167,3167,3126,3126,3124,3124,3122,3122,3105,3105,3098,3098,3083,3083,3079,3079,3072,3072,3066,3066,3064,3064,3045,3045,3038,3038,3027,3027,3019,3019,2995,2995,2980,2980,2976,2976,2972,2972,2966,2966,2950,2950,2948,2948,2936,2936,2925,2925,2909,2909,2887,2887,2882,2882,2872,2872,2864,2864,2850,2850,2836,2836,2825,2825,2808,2808,2804,2804,2802,2802,2742,2742,2734,2734,2696,2696,2683,2683,2682,2682,2652,2652,2646,2646,2635,2635,2634,2634,2611,2611,2595,2595,2594,2594,2582,2582,2572,2572,2570,2570,2569,2569,2546,2546,2544,2544,2542,2542,2520,2520,2516,2516,2503,2503,2495,2495,2481,2481,2473,2473,2447,2447,2420,2420,2418,2418,2391,2391,2389,2389,2361,2361,2352,2352,2348,2348,2343,2343,2342,2342,2330,2330,2304,2304,2277,2277,2273,2273,2264,2264,2259,2259,2257,2257,2252,2252,2229,2229,2204,2204,2200,2200,2175,2175,2168,2168,2151,2151,2149,2149,2148,2148,2141,2141,2139,2139,2134,2134,2131,2131,2125,2125,2122,2122,2112,2112,2104,2104,2080,2080,2076,2076,2063,2063,2045,2045,2026,2026,2019,2019,2011,2011,2003,2003,1996,1996,1979,1979,1969,1969,1964,1964,1959,1959,1953,1953,1950,1950,1943,1943,1918,1918,1910,1910,1897,1897,1882,1882,1877,1877,1875,1875,1865,1865,1859,1859,1856,1856,1851,1851,1847,1847,1841,1841,1838,1838,1832,1832,1798,1798,1795,1795,1791,1791,1786,1786,1785,1785,1783,1783,1779,1779,1777,1777,1773,1773,1761,1761,1753,1753,1751,1751,1739,1739,1725,1725,1724,1724,1718,1718,1706,1706,1704,1704,1690,1690,1672,1672,1665,1665,1662,1662,1660,1660,1654,1654,1652,1652,1643,1643,1639,1639,1629,1629,1628,1628,1624,1624,1622,1622,1621,1621,1613,1613,1608,1608,1606,1606,1594,1594,1579,1579,1572,1572,1566,1566,1565,1565,1558,1558,1552,1552,1531,1531,1505,1505,1487,1487,1480,1480,1467,1467,1462,1462,1456,1456,1454,1454,1453,1453,1446,1446,1444,1444,1433,1433,1431,1431,1428,1428,1413,1413,1409,1409,1406,1406,1404,1404,1399,1399,1398,1398,1397,1397,1390,1390,1383,1383,1382,1382,1377,1377,1370,1370,1368,1368,1366,1366,1364,1364,1350,1350,1342,1342,1314,1314,1305,1305,1296,1296,1295,1295,1287,1287,1280,1280,1262,1262,1259,1259,1247,1247,1245,1245,1227,1227,1225,1225,1215,1215,1214,1214,1213,1213,1208,1208,1207,1207,1197,1197,1192,1192,1191,1191,1178,1178,1169,1169,1165,1165,1156,1156,1155,1155,1151,1151,1150,1150,1133,1133,1132,1132,1131,1131,1129,1129,1116,1116,1115,1115,1113,1113,1097,1097,1093,1093,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,665,665,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,509,509,0.0],[142002,142002,142002,140662,140662,127285,127285,117040,117040,105317,105317,103454,103454,103373,103373,102123,102123,93568,93568,91839,91839,86382,86382,80943,80943,79621,79621,79082,79082,75358,75358,68666,68666,67221,67221,61017,61017,59515,59515,59353,59353,58500,58500,56256,56256,54525,54525,54282,54282,53628,53628,52671,52671,51962,51962,49921,49921,49269,49269,46027,46027,45461,45461,44267,44267,42997,42997,42975,42975,42825,42825,42333,42333,40871,40871,40177,40177,39763,39763,39707,39707,39340,39340,36234,36234,35960,35960,35354,35354,35098,35098,34659,34659,32658,32658,32089,32089,31943,31943,31620,31620,31299,31299,29416,29416,28791,28791,27094,27094,26219,26219,26007,26007,24953,24953,24791,24791,24346,24346,24062,24062,23950,23950,23365,23365,23326,23326,22851,22851,22150,22150,21630,21630,21459,21459,21372,21372,20560,20560,20349,20349,20334,20334,20049,20049,19861,19861,18961,18961,18318,18318,18220,18220,18086,18086,17485,17485,17358,17358,17263,17263,17170,17170,17013,17013,16710,16710,16624,16624,15988,15988,14949,14949,14183,14183,13917,13917,13557,13557,13551,13551,13377,13377,12871,12871,12782,12782,12642,12642,12612,12612,12507,12507,12473,12473,12307,12307,12218,12218,12039,12039,12004,12004,11900,11900,11654,11654,11569,11569,11327,11327,11318,11318,11172,11172,10771,10771,10301,10301,10082,10082,9910,9910,9722,9722,9448,9448,9182,9182,9178,9178,8583,8583,8581,8581,8402,8402,8293,8293,8165,8165,7899,7899,7879,7879,7586,7586,7499,7499,7492,7492,7449,7449,7374,7374,7275,7275,7001,7001,6903,6903,6852,6852,6599,6599,6492,6492,6412,6412,6297,6297,5894,5894,5881,5881,5843,5843,5805,5805,5799,5799,5783,5783,5251,5251,4939,4939,4711,4711,4665,4665,4652,4652,4502,4502,4288,4288,4114,4114,4110,4110,4006,4006,3885,3885,3670,3670,3649,3649,3381,3381,3188,3188,3148,3148,3124,3124,3122,3122,3079,3079,3072,3072,3064,3064,3063,3063,2976,2976,2938,2938,2872,2872,2825,2825,2652,2652,2473,2473,2420,2420,2391,2391,2141,2141,2131,2131,2080,2080,2011,2011,1996,1996,1959,1959,1798,1798,1773,1773,1724,1724,1606,1606,1480,1480,1453,1453,1433,1433,1382,1382,1368,1368,1295,1295,1280,1280,1247,1247,1169,1169,1150,1150,1132,1132,1131,1131,1129,1129,1097,1097,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,665,665,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,509,509,0.0],[219320,219320,219320,208731,208731,202169,202169,170658,170658,164670,164670,130131,130131,115499,115499,106643,106643,102931,102931,102164,102164,94836,94836,93957,93957,92055,92055,86732,86732,83308,83308,79444,79444,66932,66932,66137,66137,65866,65866,63511,63511,63449,63449,62173,62173,60070,60070,59946,59946,56615,56615,54809,54809,53479,53479,52147,52147,52146,52146,51179,51179,48481,48481,48113,48113,44418,44418,43991,43991,42868,42868,42436,42436,41989,41989,41958,41958,36584,36584,36558,36558,35544,35544,35301,35301,33989,33989,33819,33819,31126,31126,31110,31110,30573,30573,30391,30391,28958,28958,28658,28658,28031,28031,24757,24757,24051,24051,23997,23997,23201,23201,22862,22862,21666,21666,21347,21347,20094,20094,19934,19934,19928,19928,19577,19577,18334,18334,17247,17247,17186,17186,16985,16985,16955,16955,16926,16926,16739,16739,16683,16683,16508,16508,16158,16158,16014,16014,15555,15555,15339,15339,14958,14958,14778,14778,14322,14322,13963,13963,13696,13696,13416,13416,13159,13159,12760,12760,12170,12170,12031,12031,11902,11902,11798,11798,11424,11424,11315,11315,11196,11196,11187,11187,10659,10659,9705,9705,9209,9209,9117,9117,9054,9054,8972,8972,8683,8683,8418,8418,8396,8396,8237,8237,8168,8168,8037,8037,7640,7640,7600,7600,7415,7415,7316,7316,7314,7314,7293,7293,7000,7000,6977,6977,6912,6912,6887,6887,6553,6553,6444,6444,6097,6097,5991,5991,5560,5560,4780,4780,4575,4575,4470,4470,4428,4428,4370,4370,4268,4268,3610,3610,3448,3448,3411,3411,3346,3346,3269,3269,3031,3031,2933,2933,2890,2890,2627,2627,2555,2555,2466,2466,2266,2266,2107,2107,1980,1980,1974,1974,1660,1660,1590,1590,1412,1412,1393,1393,1371,1371,1304,1304,1162,1162,1152,1152,1089,1089,1043,1043,831,831,775,775,754,754,702,702,691,691,590,590,570,570,508,508,0.0]]}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"coord_x":[[0.0,1e-10,3.725154565984812,3.725154566084812,6.918305969872971,6.918305969972971,9.751278885164933,9.751278885264933,12.493330632920214,12.493330633020214,15.179719026370405,15.179719026470405,17.80950763193369,17.80950763203369,20.207496259710055,20.207496259810053,22.400122825241894,22.400122825341892,24.455964755253284,24.455964755353282,26.50583964337125,26.505839643471248,28.386067610504607,28.386067610604606,30.26091652892382,30.260916529023817,32.08352116448783,32.08352116458783,33.73536822528414,33.73536822538414,35.35537654429875,35.35537654439875,36.90121061262356,36.90121061272356,38.40166031851808,38.401660318618084,39.8446173579942,39.844617358094204,41.28128069269952,41.28128069279952,42.66820415994285,42.668204160042855,43.97677209166596,43.97677209176596,45.24204630337399,45.24204630347399,46.37850645376958,46.37850645386958,47.47101955839535,47.47101955849535,48.55020481762411,48.550204817724115,49.587860336375655,49.58786033647566,50.5592032910196,50.5592032911196,51.51649974193633,51.51649974203633,52.46891802721755,52.46891802731755,53.39254642423926,53.39254642433926,54.30641848998996,54.30641849008996,55.202824980563555,55.20282498066356,56.085119634834456,56.08511963493446,56.95730951743182,56.95730951753182,57.768478774535104,57.768478774635106,58.56712595467226,58.56712595477226,59.30488317446629,59.30488317456629,60.036738684942364,60.036738685042366,60.72771778069597,60.72771778079597,61.39140963742599,61.39140963752599,62.05065887902367,62.050658879123674,62.707512592853924,62.707512592953925,63.36133923068714,63.361339230787145,64.01470854049204,64.01470854059204,64.66803429524661,64.66803429534662,65.31974851313947,65.31974851323947,65.95567402529242,65.95567402539243,66.58203920390079,66.5820392040008,67.20576930196499,67.205769302065,67.82597144095351,67.82597144105351,68.43887810901394,68.43887810911394,69.02702373096916,69.02702373106916,69.60025174819083,69.60025174829083,70.15991236723876,70.15991236733876,70.70016921137048,70.70016921147048,71.20553846019831,71.20553846029831,71.69588121666678,71.69588121676678,72.18517865192764,72.18517865202764,72.66578685465026,72.66578685475027,73.13753160463338,73.13753160473338,73.60755593012898,73.60755593022898,74.07011056449522,74.07011056459523,74.52497773248052,74.52497773258052,74.97557650553476,74.97557650563476,75.4084919281603,75.4084919282603,75.823702222832,75.823702222932,76.23244459253162,76.23244459263162,76.64114340718092,76.64114340728092,77.04211120039896,77.04211120049897,77.44275233073964,77.44275233083964,77.83507444646976,77.83507444656976,78.21409049432805,78.21409049442805,78.57533608165701,78.57533608175702,78.93579767808026,78.93579767818026,79.28752648691497,79.28752648701497,79.63320114375563,79.63320114385563,79.96389286328723,79.96389286338723,80.2872673343656,80.2872673344656,80.6093569314596,80.6093569315596,80.92602392478913,80.92602392488914,81.23911940399269,81.23911940409269,81.55047268118356,81.55047268128357,81.85919087783026,81.85919087793026,82.16686375326935,82.16686375336936,82.473926858004,82.47392685810401,82.7795526460782,82.7795526461782,83.08084470664585,83.08084470674585,83.38115677858137,83.38115677868137,83.67898621264882,83.67898621274882,83.97333124269092,83.97333124279092,84.2676327176827,84.2676327177827,84.54588415663267,84.54588415673267,84.81464059461355,84.81464059471355,85.079215747764,85.079215747864,85.34257135950557,85.34257135960557,85.5964973028535,85.59649730295351,85.84933436994353,85.84933437004354,86.08940980729068,86.08940980739068,86.32907147165982,86.32907147175982,86.5680798102742,86.5680798103742,86.80436595824378,86.80436595834378,87.03684103931062,87.03684103941062,87.26580993882693,87.26580993892694,87.4943868428904,87.49438684299041,87.7125105348778,87.7125105349778,87.92551650845294,87.92551650855295,88.13850070450295,88.13850070460295,88.35028713666921,88.35028713676921,88.56096291505241,88.56096291515242,88.76911250051721,88.76911250061721,88.97440923018627,88.97440923028627,89.17835575329548,89.17835575339548,89.3762699019358,89.3762699020358,89.5739880528497,89.5739880529497,89.76952845124774,89.76952845134774,89.96391464081239,89.96391464091239,90.15812661017577,90.15812661027577,90.34395423235313,90.34395423245313,90.5291938613512,90.5291938614512,90.71421571509771,90.71421571519771,90.89838824536302,90.89838824546302,91.07515641707445,91.07515641717445,91.24767797137997,91.24767797147997,91.41917598200305,91.41917598210306,91.59034732974875,91.59034732984875,91.75977647548177,91.75977647558177,91.92818207753234,91.92818207763234,92.09144818364551,92.09144818374551,92.2518178789126,92.2518178790126,92.4109244777205,92.4109244778205,92.5678315464874,92.5678315465874,92.72314885591771,92.72314885601772,92.87752973176622,92.87752973186622,93.03184527503926,93.03184527513926,93.18430972867381,93.18430972877381,93.33553286337434,93.33553286347434,93.48209560769095,93.48209560779095,93.62767836337542,93.62767836347543,93.77286912360705,93.77286912370705,93.91779855353678,93.91779855363679,94.06089867135319,94.06089867145319,94.19763975182332,94.19763975192332,94.33285640553237,94.33285640563237,94.46517664839533,94.46517664849533,94.5959724644972,94.5959724645972,94.72467763818383,94.72467763828384,94.85052995607474,94.85052995617474,94.97575072573602,94.97575072583602,95.09554889163286,95.09554889173286,95.21497683960199,95.21497683970199,95.33207459237917,95.33207459247917,95.44838835425065,95.44838835435066,95.56219770072889,95.56219770082889,95.67563682927944,95.67563682937944,95.78794352652176,95.78794352662176,95.89800713867275,95.89800713877275,96.00678587683939,96.00678587693939,96.11508550945254,96.11508550955254,96.22303670166315,96.22303670176315,96.33048701079512,96.33048701089513,96.43602089771314,96.43602089781314,96.5408579038261,96.5408579039261,96.64543357963714,96.64543357973714,96.74920348701733,96.74920348711733,96.85216762596664,96.85216762606665,96.95393400103225,96.95393400113225,97.05147553621711,97.05147553631711,97.14777575246794,97.14777575256794,97.24163688590102,97.24163688600102,97.3346051408026,97.3346051409026,97.42191123916295,97.42191123926295,97.50891245217112,97.50891245227112,97.59571766745283,97.59571766755283,97.68154289410244,97.68154289420244,97.76601791419219,97.76601791429219,97.84694319768113,97.84694319778113,97.92556006350327,97.92556006360327,98.00143296115543,98.00143296125543,98.07621698254967,98.07621698264967,98.15045656581495,98.15045656591495,98.22240950893858,98.22240950903858,98.29388334650874,98.29388334660874,98.36470385832413,98.36470385842414,98.43378216812685,98.43378216822686,98.50090050066531,98.50090050076531,98.56577574811243,98.56577574821243,98.6275368094619,98.6275368095619,98.6886009900063,98.6886009901063,98.74962161550037,98.74962161560038,98.80622140338727,98.80622140348727,98.86205897789364,98.86205897799364,98.91591479761057,98.91591479771057,98.96378179790892,98.96378179800892,99.01014614897134,99.01014614907135,99.05594428437963,99.05594428447964,99.09893311904248,99.09893311914249,99.14152995825249,99.14152995835249,99.18284192347814,99.18284192357814,99.22354411799934,99.22354411809934,99.26405031479413,99.26405031489413,99.30305386235297,99.30305386245297,99.34181785713508,99.34181785723509,99.37866542970323,99.37866542980323,99.41479434394117,99.41479434404117,99.44763485188017,99.44763485198017,99.47988736663989,99.47988736673989,99.51183499604738,99.51183499614739,99.54236708631957,99.54236708641957,99.57259429123955,99.57259429133956,99.60258194338279,99.60258194348279,99.63060961826176,99.63060961836176,99.65680798102743,99.65680798112743,99.68185213495968,99.68185213505969,99.70502342172831,99.70502342182832,99.72773738046861,99.72773738056861,99.7504077841586,99.7504077842586,99.77272974744604,99.77272974754604,99.79502993320833,99.79502993330833,99.81711234371903,99.81711234381903,99.83897697897815,99.83897697907815,99.84862442262336,99.84862442272336,99.85683454960811,99.85683454970811],[0.0,1e-10,2.4339792499249797,2.4339792500249797,4.223269680558911,4.223269680658911,5.900630605548159,5.900630605648159,7.452282085754121,7.452282085854121,8.946040488321177,8.946040488421177,10.36147423682212,10.36147423692212,11.763366378465161,11.763366378565161,13.137330310124463,13.137330310224463,14.445579532023734,14.445579532123734,15.708198955454613,15.708198955554613,16.967330060958897,16.967330061058895,18.10226838164798,18.10226838174798,19.21259347771214,19.21259347781214,20.293148705259885,20.293148705359883,21.352557359538327,21.352557359638325,22.39016944341829,22.39016944351829,23.38284505910099,23.38284505920099,24.324582566426997,24.324582566526995,25.22580358603416,25.22580358613416,26.126439608225063,26.12643960832506,27.017889004323564,27.017889004423562,27.862581940263098,27.862581940363096,28.6882082937467,28.6882082938467,29.484779775555992,29.48477977565599,30.2809395925168,30.280939592616797,31.062322808074263,31.06232280817426,31.832374407013035,31.832374407113033,32.57207114001913,32.572071140119135,33.30117291981961,33.30117291991961,33.990343209317494,33.990343209417496,34.676588511734074,34.676588511834076,35.35886883166266,35.35886883176266,36.009342625403406,36.00934262550341,36.655266439239895,36.6552664393399,37.28786531192821,37.28786531202821,37.91773419667396,37.917734196773964,38.5409731107021,38.5409731108021,39.16024704224223,39.160247042342235,39.77627098813647,39.77627098823647,40.39175326975639,40.391753269856395,40.999565585252,40.999565585352,41.60107292859457,41.60107292869457,42.19677363091646,42.19677363101646,42.77782773126086,42.77782773136086,43.355935177952965,43.35593517805297,43.90702441064219,43.90702441074219,44.451310340046,44.451310340146,44.9885546338837,44.9885546339837,45.52367560376609,45.52367560386609,46.055438255147706,46.05543825524771,46.58005093810836,46.58005093820836,47.094155334147274,47.094155334247276,47.607566399915065,47.60756640001507,48.119850803992286,48.11985080409229,48.611725298213265,48.61172529831327,49.09709982114246,49.09709982124246,49.568217740371644,49.568217740471646,50.02098407398701,50.02098407408701,50.46480211379066,50.46480211389066,50.900690188618334,50.900690188718336,51.33352327693886,51.333523277038864,51.76453637329769,51.76453637339769,52.19533280394678,52.195332804046785,52.621882586685246,52.62188258678525,53.04778237229452,53.04778237239452,53.469695508844836,53.46969550894484,53.88224868673497,53.88224868683497,54.292895206379505,54.29289520647951,54.70308672803362,54.70308672813362,55.110634928029064,55.110634928129066,55.51662313491449,55.51662313501449,55.89866978087513,55.89866978097513,56.27553811637332,56.27553811647332,56.65173478817135,56.651734788271355,57.02762812797577,57.02762812807577,57.40230813980572,57.40230813990572,57.77235150544752,57.77235150554752,58.135309902381266,58.13530990248127,58.497813301324584,58.497813301424586,58.8582583760255,58.858258376125505,59.218378452161836,59.21837845226184,59.57813019659163,59.57813019669163,59.93506528679498,59.93506528689498,60.29158871214985,60.291588712249855,60.647830472082084,60.647830472182086,61.00242557262039,61.00242557272039,61.34974070531189,61.34974070541189,61.695777510316,61.695777510416,62.04107765190704,62.04107765200704,62.385359464662365,62.38535946476237,62.729316278853105,62.72931627895311,63.07049977195934,63.07049977205934,63.40301663667652,63.40301663677652,63.73226184917683,63.73226184927683,64.06111706339964,64.06111706349964,64.38693895768627,64.38693895778627,64.70569754983582,64.70569754993582,65.01765283869996,65.01765283879996,65.32900146357687,65.32900146367687,65.63452178086213,65.63452178096213,65.94002043157643,65.94002043167643,66.2441107551775,66.2441107552775,66.5477027476462,66.5477027477462,66.8485214190304,66.8485214191304,67.1472817661722,67.1472817662722,67.44539211618482,67.44539211628482,67.74228913822297,67.74228913832297,68.03864449598682,68.03864449608682,68.33369985949228,68.33369985959229,68.62242858427375,68.62242858437375,68.91011731364853,68.91011731374853,69.19761104388455,69.19761104398455,69.48506144097864,69.48506144107864,69.77112517753046,69.77112517763047,70.05645225066922,70.05645225076923,70.34171432409507,70.34171432419507,70.62116975650024,70.62116975660024,70.89709353783688,70.89709353793688,71.17247565489919,71.17247565499919,71.44703444226455,71.44703444236455,71.72150656334601,71.72150656344601,71.99574035214678,71.99574035224678,72.26466583105925,72.26466583115925,72.53073132260333,72.53073132270333,72.79651514872477,72.79651514882477,73.0609556474459,73.0609556475459,73.3251794804573,73.3251794805573,73.58788665350062,73.58788665360062,73.84966216399211,73.84966216409211,74.10803602284089,74.1080360229409,74.3640265588827,74.3640265589827,74.61698377498833,74.61698377508833,74.86861933026462,74.86861933036462,75.11862989271798,75.11862989281798,75.3656504683771,75.3656504684771,75.60952939124519,75.60952939134519,75.85319164840355,75.85319164850355,76.3393895010297,76.3393895011297,76.58095010080372,76.58095010090372,76.82108070689354,76.82108070699354,77.05130969004887,77.05130969014887,77.2814520069203,77.2814520070203,77.50938433355253,77.50938433365253,77.73376334254523,77.73376334264523,77.95725402212807,77.95725402222807,78.18024637057853,78.18024637067853,78.40055206422838,78.40055206432838,78.61780277137109,78.61780277147109,78.8338618171103,78.8338618172103,79.04879420115894,79.04879420125894,79.26147326182642,79.26147326192643,79.47363232479057,79.47363232489057,79.68505472434164,79.68505472444164,79.89424546708253,79.89424546718253,80.10254788041352,80.10254788051353,80.31043862889605,80.31043862899605,80.51629271970715,80.51629271980715,80.7161668369298,80.7161668370298,80.91567262244591,80.91567262254591,81.1150484085362,81.1150484086362,81.31284253494547,81.31284253504548,81.51013833022238,81.51013833032238,81.7067841283701,81.7067841284701,81.90184826683682,81.90184826693682,82.09667407302284,82.09667407312284,82.28902989011799,82.28902989021799,82.48112570836146,82.48112570846146,82.6728531948984,82.6728531949984,82.86447234858046,82.86447234868047,83.05375151259749,83.05375151269749,83.24277067776283,83.24277067786284,83.43116151236998,83.43116151246998,83.61840401871558,83.61840401881558,83.80495319479006,83.80495319489006,83.99096070659022,83.99096070669022,84.17653488697091,84.17653488707091,84.36100407223202,84.36100407233202,84.54315493439904,84.54315493449904,84.72422246801743,84.72422246811743,84.90295001197077,84.90295001207078,85.08048589452063,85.08048589462064,85.25269180061122,85.25269180071122,85.42058605907823,85.42058605917823,85.58555533046396,85.58555533056396,85.750264602998,85.750264603098,85.91183222274101,85.91183222284101,86.07153651738038,86.07153651748038,86.23078581402932,86.23078581412932,86.3848568002158,86.3848568003158,86.53671779616306,86.53671779626306,86.68827546011671,86.68827546021672,86.83950812550577,86.83950812560578,86.99054579175609,86.99054579185609,87.14147512515153,87.14147512525153,87.29084446543695,87.29084446553695,87.43845881347357,87.43845881357358,87.58481650039379,87.58481650049379,87.72842253280048,87.72842253290048,87.87101023637146,87.87101023647146,88.01260127767769,88.01260127777769,88.15289232472557,88.15289232482557,88.29255504121524,88.29255504131524,88.43132942829503,88.43132942839503,88.5695621511005,88.5695621512005,88.7071448767768,88.7071448768768,88.84433760417558,88.84433760427558,88.98031700359991,88.98031700369991,89.11612307045644,89.11612307055644,89.24967581393182,89.24967581403182,89.38156023144231,89.38156023154231,89.51288131810752,89.51288131820752,89.6438124064952,89.6438124065952,89.77285850320828,89.77285850330829,89.89995460853382,89.89995460863382,90.02635738358822,90.02635738368822,90.15169849666498,90.15169849676498,90.27638961261255,90.27638961271255,90.40032239857608,90.40032239867608,90.52399518568792,90.52399518578792,90.64608631311879,90.64608631321879,90.76629244887502,90.76629244897502,90.88270693471104,90.88270693481104,90.99823309113718,90.99823309123718,91.11202592188552,91.11202592198552,91.22501708950786,91.22501708960786,91.33787825770436,91.33787825780436,91.44980776334904,91.44980776344904,91.5610439387226,91.5610439388226,91.67041678899251,91.67041678909251,91.77976797269146,91.77976797279146,91.88892415725164,91.88892415735164,91.99764701039237,91.99764701049237,92.10298987846137,92.10298987856137,92.2075960831173,92.2075960832173,92.31083729380195,92.31083729390195,92.41375350592202,92.41375350602202,92.51658305175819,92.51658305185819,92.61936926445242,92.61936926455242,92.72152714658844,92.72152714668844,92.82312169787917,92.82312169797918,92.92454291660212,92.92454291670212,93.02375414508586,93.02375414518586,93.12077704990136,93.12077705000137,93.21753995586519,93.2175399559652,93.31419452897417,93.31419452907417,93.4100907720991,93.4100907721991,93.50590034894013,93.50590034904013,93.60157992635533,93.60157992645533,93.69550451152175,93.69550451162175,93.78899576526871,93.78899576536871,93.88058036077007,93.88058036087007,93.97097329486795,93.97097329496795,94.05997956842357,94.05997956852357,94.14707918373361,94.14707918383361,94.23368046791127,94.23368046801127,94.32004341980823,94.32004341990823,94.40558304200823,94.40558304210823,94.48895600711097,94.48895600721097,94.57228563907177,94.57228563917177,94.65349194707723,94.65349194717723,94.73428659023422,94.73428659033422,94.81479956796858,94.81479956806858,94.89516087970611,94.89516087980611,94.97355053348514,94.97355053358514,95.05187518755126,95.05187518765126,95.12954984448818,95.12954984458818,95.28353416439077,95.28353416449077,95.35839216710126,95.35839216720126,95.43309850381495,95.43309850391495,95.50767484110278,95.50767484120279,95.58209951239382,95.58209951249383,95.65262420090978,95.65262420100979,95.72308388971283,95.72308388981283,95.79326191309322,95.79326191319322,95.86300660505417,95.86300660515417,95.93229629902469,95.93229629912469,96.00104432872088,96.00104432882088,96.06909902814596,96.06909902824596,96.13637373101602,96.13637373111602,96.20317176932468,96.20317176942469,96.26955814278487,96.26955814288488,96.33483952112545,96.33483952122545,96.3994275691949,96.3994275692949,96.4636689521288,96.4636689522288,96.52784533534977,96.52784533544977,96.5907867240253,96.59078672412531,96.65368477955889,96.65368477965889,96.71578117196648,96.71578117206649,96.7777908980902,96.7777908981902,96.83949729222029,96.83949729232029,96.90085702121482,96.90085702131482,96.9617834187899,96.96178341888991,97.02216815209066,97.02216815219066,97.08214122054294,97.08214122064294,97.14094429416271,97.14094429426271,97.19972570121149,97.1997257013115,97.25787877770206,97.25787877780206,97.31592352133778,97.31592352143778,97.37390326526058,97.37390326536058,97.43179634289949,97.43179634299949,97.48966775396742,97.48966775406743,97.54738749903855,97.54738749913855,97.6039805824191,97.6039805825191,97.66016200095116,97.66016200105116,97.71604008748962,97.71604008758962,97.7716581751764,97.7716581752764,97.82721126315026,97.82721126325026,97.88226601999175,97.88226602009175,97.93591244972,97.93591244982001,97.98949387973536,97.98949387983536,98.04240364605056,98.04240364615056,98.09284342327489,98.09284342337489,98.14224320509251,98.14224320519251,98.19123132206165,98.19123132216166,98.2398294407533,98.2398294408533,98.28764756288993,98.28764756298993,98.33537901874267,98.33537901884267,98.38282880917276,98.38282880927277,98.43023526646091,98.43023526656091,98.47688339376501,98.47688339386501,98.52301152336577,98.52301152346577,98.56833798984054,98.56833798994055,98.61102113465665,98.61102113475665,98.65008596212033,98.65008596222033,98.68841412617094,98.68841412627094,98.72641729165696,98.72641729175696,98.76390045943964,98.76390045953964,98.8003652983866,98.8003652984866,98.83620180677535,98.83620180687535,98.87160498374466,98.87160498384466,98.90674816186228,98.90674816196228,98.94169634084116,98.94169634094116,98.97610285554572,98.97610285564572,99.0092960422758,99.00929604237581,99.04144923359922,99.04144923369923,99.07353742520971,99.07353742530971,99.10493228654907,99.10493228664907,99.13543881847855,99.13543881857855,99.16570701812734,99.16570701822734,99.19517355465014,99.19517355475014,99.22461842460196,99.22461842470196,99.28339983165074,99.28339983175074,99.31204303847657,99.31204303857658,99.34042624645075,99.34042624655075,99.36692446275029,99.36692446285029,99.39340101247886,99.39340101257886,99.4187942336588,99.4187942337588,99.44384078970317,99.44384078980318,99.46704568721488,99.46704568731488,99.48979558673616,99.48979558683617,99.51235048711868,99.51235048721868,99.534277056943,99.534277057043,99.54981198833039,99.54981198843039],[0.0,1e-10,0.6821906007116256,0.6821906008116256,1.2944431020880554,1.2944431021880554,1.892468320328696,1.892468320428696,2.481734935475022,2.4817349355750222,3.0502379965196535,3.0502379966196536,3.579893820456916,3.579893820556916,4.109266405985656,4.109266406085656,4.636961348633146,4.636961348733146,5.154307195584618,5.154307195684618,5.6702368504934775,5.6702368505934775,6.163529220290415,6.163529220390415,6.6461238932731534,6.6461238933731535,7.123925300880893,7.123925300980893,7.589569244492048,7.589569244592048,8.032837353829917,8.032837353929917,8.471682586480856,8.471682586580856,8.910288155863046,8.910288155963046,9.344361910708875,9.344361910808875,9.77671444753368,9.77671444763368,10.207411129047124,10.207411129147124,10.637955297571361,10.637955297671361,11.058390033668331,11.058390033768331,11.47878119462553,11.47878119472553,11.898889117174205,11.898889117274205,12.313332271552428,12.313332271652428,12.721914569631222,12.721914569731222,13.130257204441266,13.130257204541266,13.519296052332,13.519296052432,13.902343318503988,13.902343318603988,14.28427941861177,14.28427941871177,14.665191502934894,14.665191503034894,15.045057783903474,15.045057784003474,15.422832458162963,15.422832458262963,15.799626691777567,15.799626691877567,16.173239940188765,16.173239940288763,16.536111916645986,16.536111916745984,16.898243115727073,16.89824311582707,17.259328511453617,17.259328511553615,17.613768698364822,17.61376869846482,17.964352485406142,17.96435248550614,18.30844357662133,18.308443576721327,18.65148886448197,18.651488864581967,18.99124422928977,18.991244229389768,19.33006272859246,19.330062728692457,19.667835424540602,19.6678354246406,20.002819311543295,20.002819311643293,20.33412109923519,20.33412109933519,20.664420658712316,20.664420658812315,20.994524130060462,20.99452413016046,21.317720941754636,21.317720941854635,21.640089825793126,21.640089825893124,21.959299512198097,21.959299512298095,22.277811996366705,22.277811996466703,22.59562727829895,22.595627278398947,22.91298502126358,22.91298502136358,23.225266260444688,23.225266260544686,23.534279364142847,23.534279364242845,23.842769566163728,23.842769566263726,24.149996089131207,24.149996089231205,24.455479606507772,24.45547960660777,24.760069833519,24.760069833619,25.063069567928522,25.06306956802852,25.36526316225225,25.36526316235225,25.664842248189615,25.664842248289613,25.96239509012755,25.96239509022755,26.259904356925713,26.25990435702571,26.55259857077899,26.55259857087899,26.844050893148747,26.844050893248745,27.131908266487255,27.131908266587253,27.41965670197633,27.419656702076328,27.706925810927903,27.7069258110279,27.99227761372948,27.99227761382948,28.27654003803674,28.276540038136737,28.55995274711843,28.55995274721843,28.84140457491035,28.841404575010348,29.12183238691761,29.12183238701761,29.401759084817485,29.401759084917483,29.68024780310486,29.680247803204857,29.955686261608143,29.95568626170814,30.231037569831884,30.231037569931882,30.50144309969142,30.50144309979142,30.770018473680505,30.770018473780503,31.03584861386391,31.035848613963907,31.300589375552995,31.300589375652994,31.56515583668299,31.56515583678299,31.82887258258742,31.828872582687417,32.09156531270719,32.09156531280719,32.35414910497752,32.354149105077525,32.61370442503365,32.613704425133655,32.87315080724036,32.87315080734036,33.13137708553342,33.131377085633424,33.38890616159013,33.38890616169013,33.646282724657624,33.646282724757626,33.902940297918875,33.902940298018876,34.15892245651364,34.158922456613645,34.41401132474308,34.41401132484308,34.66872980428444,34.66872980438444,34.92194494150365,34.92194494160365,35.17278523360523,35.172785233705234,35.421664644417056,35.42166464451706,35.669846852992514,35.669846853092515,35.915654216450356,35.91565421655036,36.16096046580081,36.160960465900814,36.40613598973195,36.40613598983195,36.64765120192219,36.64765120202219,36.88304410697435,36.883044107074355,37.11784874763959,37.11784874773959,37.35208691148778,37.35208691158778,37.5858021736587,37.5858021737587,37.819364922840414,37.819364922940416,38.05220868221588,38.05220868231588,38.283745187398154,38.283745187498155,38.514192314086124,38.514192314186126,38.74145845557068,38.74145845567068,38.9679838196791,38.9679838197791,39.19337623015343,39.193376230253435,39.41780998755276,39.41780998765276,39.6414376048663,39.6414376049663,39.86502164704006,39.86502164714006,40.08803921239678,40.08803921249678,40.307701491991,40.307701492091,40.525729703843744,40.525729703943746,40.741927759826034,40.741927759926035,40.95731967572252,40.957319675822525,41.17131718714629,41.171317187246295,41.38313594158142,41.383135941681424,41.59397425537167,41.59397425547167,41.80398464150623,41.803984641606235,42.013951452501026,42.01395145260103,42.22304676070036,42.223046760800365,42.4319895559105,42.4319895560105,42.64021336131438,42.64021336141438,42.84839359157849,42.848393591678494,43.05598555745567,43.05598555755567,43.26294568380615,43.26294568390615,43.46964435931799,43.46964435941799,43.67416427784119,43.674164277941195,43.87469707107519,43.87469707117519,44.07475053777169,44.074750537871694,44.27471685418865,44.27471685428865,44.47191614923004,44.47191614933004,44.66482329300381,44.664823293103815,44.85703323454123,44.85703323464123,45.049177813368985,45.04917781346899,45.24047267697117,45.240472677071175,45.43104855076711,45.43104855086711,45.62094900989657,45.62094900999657,45.81004332894023,45.810043329040234,45.99898513499469,45.99898513509469,46.18781800319972,46.187818003299725,46.37612796972748,46.37612796982748,46.752333938955154,46.752333939055156,46.939445589139154,46.939445589239156,47.12644830147374,47.12644830157374,47.313407438668534,47.313407438768536,47.49838390700368,47.49838390710368,47.68266317310246,47.682663173202464,47.86641953752397,47.86641953762397,48.050154114375594,48.050154114475596,48.23275573759312,48.232755737693125,48.413962956337926,48.41396295643793,48.59312214351342,48.59312214361342,48.771496978173,48.771496978273,48.949850025262684,48.949850025362686,49.127636595535336,49.12763659563534,49.305401378238095,49.3054013783381,49.48194605702722,49.481946057127224,49.65748850760158,49.65748850770158,49.832791294907175,49.832791295007176,50.00805050707301,50.00805050717301,50.182895755410996,50.182895755511,50.356150511147284,50.356150511247286,50.52892594034607,50.52892594044607,50.701636006835194,50.701636006935196,50.873823171647054,50.873823171747055,51.04550922235152,51.04550922245152,51.2171734854861,51.2171734855861,51.388772385911025,51.38877238601103,51.56026234848652,51.56026234858652,51.73170873592223,51.731708736022235,51.903002610368745,51.90300261046875,52.07410039668628,52.074100396786285,52.24498030730496,52.24498030740496,52.41581664278386,52.41581664288386,52.586522252843444,52.586522252943446,52.75716250019337,52.75716250029337,52.92719269558647,52.92719269568647,53.096198875194915,53.09619887529492,53.26492181639484,53.26492181649484,53.433470457035675,53.43347045713568,53.60121295759071,53.60121295769071,53.7685632818878,53.7685632819878,53.9350856785292,53.9350856786292,54.100867297794466,54.10086729789447,54.26614780295235,54.26614780305235,54.43086183129318,54.43086183139318,54.59540155907493,54.59540155917493,54.759854136577125,54.75985413667713,54.92308661016569,54.92308661026569,55.08629729618436,55.086297296284364,55.249333681643954,55.249333681743956,55.41182537785638,55.41182537795638,55.57412098593983,55.57412098603983,55.735719391786915,55.73571939188692,55.896620595397636,55.89662059549764,56.05721677302995,56.05721677312995,56.21770401281283,56.21770401291283,56.37782086390765,56.37782086400765,56.53769805173371,56.537698051833715,56.69746630171035,56.69746630181035,56.856885950568795,56.8568859506688,57.01613129886816,57.01613129896816,57.174788382780584,57.174788382880585,57.33329295370381,57.33329295380381,57.49177573705715,57.49177573715715,57.64914735434628,57.649147354446285,57.80577819425928,57.805778194359284,57.96184255735523,57.961842557455235,58.117253293354594,58.117253293454596,58.27253330393464,58.27253330403464,58.427421138256726,58.42742113835673,58.580958143245866,58.58095814334587,58.734059396837274,58.734059396937276,58.886594173611634,58.886594173711636,59.190966524924,59.190966525024,59.34271694918245,59.342716949282455,59.49296403111875,59.492964031218754,59.64225245998005,59.64225246008005,59.791061562303845,59.79106156240385,59.9388248612731,59.9388248613731,60.086370284543484,60.086370284643486,60.233654256975235,60.23365425707524,60.3807639288479,60.3807639289479,60.52695852278533,60.52695852288533,60.67254306476595,60.67254306486595,60.817953306187476,60.81795330628748,60.96316745948002,60.96316745958002,61.10825088735325,61.10825088745325,61.39782947871278,61.39782947881278,61.54160565239283,61.541605652492834,61.68488071196549,61.68488071206549,61.82806862125861,61.82806862135861,61.97121295541196,61.97121295551196,62.11370366246871,62.11370366256871,62.2559764938266,62.2559764939266,62.3975956980879,62.3975956981879,62.68065980605141,62.68065980615141,62.82162538321612,62.821625383316125,62.96246023496151,62.96246023506151,63.10316436128758,63.103164361387584,63.24382491247388,63.243824912573885,63.38433295067098,63.38433295077098,63.52418736177149,63.52418736187149,63.66388925988279,63.66388925998279,63.80315540659636,63.80315540669636,63.94128859967584,63.941288599775845,64.07913855434681,64.07913855444681,64.21687957116833,64.21687957126834,64.35431556201145,64.35431556211145,64.49168619014492,64.49168619024492,64.62888251771929,64.62888251781929,64.76557773118627,64.76557773128627,64.90183719325553,64.90183719335553,65.03787877962593,65.03787877972593,65.30987480208717,65.30987480218717,65.44511024837176,65.44511024847176,65.57977921783932,65.57977921793932,65.71346774666198,65.71346774676198,65.84672052408692,65.84672052418692,65.97897107329709,65.97897107339709,66.11117804736749,66.11117804746749,66.24310178302936,66.24310178312936,66.37472049271283,66.37472049281283,66.5061649018372,66.5061649019372,66.63715177199396,66.63715177209396,66.7667224501081,66.7667224502081,66.89611882766316,66.89611882776316,67.02510124139037,67.02510124149038,67.15404007997782,67.15404008007782,67.28245601688798,67.28245601698798,67.41080659108849,67.41080659118849,67.53893928959013,67.53893928969013,67.6670502005219,67.6670502006219,67.7949432357548,67.7949432358548,67.92248766986951,67.92248766996951,68.04998852884445,68.04998852894445,68.17729329969042,68.17729329979042,68.30427125698809,68.30427125708809,68.43094418830735,68.43094418840735,68.55742103149764,68.55742103159764,68.6837671492686,68.6837671493686,68.80998254162024,68.80998254172025,68.93613257126223,68.93613257136224,69.06219545062469,69.06219545072469,69.18819296727747,69.18819296737747,69.31405975851094,69.31405975861094,69.43879359611032,69.43879359621032,69.56315704502161,69.56315704512161,69.68651826571815,69.68651826581815,69.80950909772662,69.80950909782662,69.93204239076748,69.93204239086748,70.05451032109868,70.05451032119868,70.17495200743043,70.17495200753044,70.29521939320311,70.29521939330311,70.41535605355647,70.41535605365647,70.53429439756607,70.53429439766607,70.6531891664359,70.6531891665359,70.77188784717676,70.77188784727676,70.8899546883909,70.8899546884909,71.0078036539062,71.0078036540062,71.12560904428172,71.12560904438172,71.24337085951746,71.24337085961746,71.36087122391456,71.36087122401456,71.47834980074178,71.47834980084178,71.59547977645082,71.59547977655082,71.71258796458997,71.71258796468997,71.8294129143206,71.8294129144206,71.94556244938475,71.94556244948475,72.06158125902958,72.06158125912958,72.17742576811533,72.17742576821533,72.29266022524426,72.29266022534426,72.40787289480329,72.40787289490329,72.52269338810437,72.52269338820437,72.63709991757763,72.63709991767763,72.751288571352,72.75128857145201,72.86495432344911,72.86495432354911,72.97724745864338,72.97724745874338,73.08949701869787,73.08949701879787,73.20163764090294,73.20163764100295,73.42509095765739,73.42509095775739,73.53598968837892,73.53598968847892,73.64675769368115,73.64675769378115,73.7573078232845,73.75730782338451,73.86770543989866,73.86770543999866,73.9777980305344,73.9777980306344,74.08691018052527,74.08691018062527,74.1959133926667,74.1959133927667,74.30476409181892,74.30476409191893,74.41311367686376,74.41311367696376,74.62959497125458,74.62959497135458,74.73729092920281,74.73729092930282,74.84485616173174,74.84485616183174,74.95231245641125,74.95231245651125,75.05970338838108,75.05970338848108,75.16683286951228,75.16683286961228,75.27365732466508,75.27365732476508,75.38000245328037,75.38000245338037,75.4856503796593,75.4856503797593,75.59121115575869,75.59121115585869,75.6967283567183,75.6967283568183,75.80187516898984,75.80187516908984,75.90615047846593,75.90615047856593,76.01036042523236,76.01036042533237,76.1143960714397,76.1143960715397,76.21825741708794,76.21825741718794,76.32192267460722,76.32192267470722,76.42462927905149,76.42462927915149,76.5272705207861,76.5272705208861,76.62949779869288,76.62949779879288,76.73137647548147,76.73137647558147,76.83301548900131,76.83301548910131,76.9345891398115,76.9345891399115,77.03594491492281,77.03594491502281,77.13727890246425,77.13727890256425,77.23774138721022,77.23774138731022,77.33763739513915,77.33763739523916,77.43722837708967,77.43722837718967,77.53677578390042,77.53677578400043,77.63562598847481,77.63562598857482,77.7341493795009,77.73414937960091,77.83223701912927,77.83223701922927,78.02836872324623,78.02836872334623,78.12610776175642,78.12610776185642,78.2233456861592,78.22334568625921,78.32038752243302,78.32038752253303,78.417015394879,78.417015394979,78.60994432622267,78.60994432632268,78.70602750942149,78.70602750952149,78.80200175477088,78.80200175487089,78.89788884984073,78.89788884994073,78.99336198108273,78.99336198118273,79.08868259933553,79.08868259943553,79.18363282890026,79.18363282900026,79.278386970336,79.278386970436,79.37272714794392,79.37272714804392,79.46702375041205,79.46702375051206,79.65546444235913,79.65546444245913,79.74884596689205,79.74884596699205,79.84211855357553,79.84211855367553,79.93536935268912,79.93536935278912,80.02859836423283,80.02859836433284,80.12176201306687,80.12176201316687,80.21470778620207,80.21470778630207,80.30754462148782,80.30754462158782,80.4003378816338,80.4003378817338,80.49300041636046,80.49300041646046,80.58544507538826,80.58544507548827,80.67778079656662,80.67778079666662,80.76920143980976,80.76920143990976,80.86042599492393,80.86042599502393,80.95145446190912,80.95145446200912,81.04198181478692,81.04198181488692,81.13240022981529,81.13240022991529,81.22247004372548,81.22247004382548,81.31232198193679,81.31232198203679,81.40186889416971,81.40186889426971,81.4913068685532,81.4913068686532,81.66989957891164,81.66989957901164,81.75892358946727,81.75892358956727,81.84740291077576,81.84740291087576,81.93570793152516,81.93570793162516,82.11183864648643,82.11183864658643,82.19946825256936,82.19946825266936,82.28692355809318,82.28692355819318,82.37424813819769,82.37424813829769,82.46152914316242,82.46152914326242,82.5487229978476,82.5487229979476,82.6357425519737,82.63574255207371,82.72274031852992,82.72274031862992,82.80960735966681,82.80960735976682,82.89606043697586,82.89606043707586,82.98225206344628,82.98225206354628,83.06831296449737,83.06831296459737,83.15435207797859,83.15435207807859,83.24036940388991,83.24036940398992,83.32608170382282,83.32608170392282,83.41140182749778,83.41140182759779,83.49604653650627,83.49604653660627,83.5801465562676,83.5801465563676,83.66337507323347,83.66337507333347,83.74605890095218,83.74605890105218,83.82854664054192,83.82854664064192,83.91007572705665,83.91007572715665,83.99149587572195,83.99149587582195,84.07278529896794,84.07278529906795,84.23501554434173,84.23501554444174,84.31558597778147,84.31558597788147,84.47650896896208,84.47650896906208,84.55655650072454,84.55655650082454,84.63651688220746,84.63651688230746,84.7164554761205,84.7164554762205,84.79624155704433,84.79624155714433,84.87574439955964,84.87574439965964,84.95478970310732,84.95478970320733,85.03281099087036,85.03281099097036,85.1104836775152,85.1104836776152,85.18811278902028,85.18811278912028,85.26491397286968,85.26491397296968,85.34154085616,85.34154085626,85.41747053721393,85.41747053731393,85.49313876742924,85.49313876752925,85.56874163493488,85.56874163503488,85.64395232618259,85.64395232628259,85.71909765472061,85.71909765482062,85.79356756859217,85.79356756869217,85.867601731066,85.867601731166,85.94139623027108,85.94139623037108,86.01514715433639,86.01514715443639,86.08881092812216,86.08881092822216,86.23592059999481,86.23592060009481,86.30912683481296,86.30912683491296,86.45527785361062,86.45527785371063,86.60110205886,86.60110205896,86.67382896714064,86.67382896724064,86.74555364720652,86.74555364730652,86.81725653970251,86.81725653980251,86.88882870677918,86.88882870687918,86.95994333488824,86.95994333498824,87.03101438785752,87.03101438795753,87.10197650297738,87.10197650307738,87.1726771672586,87.1726771673586,87.24315995584095,87.24315995594095,87.31340308115456,87.31340308125456,87.38349369347895,87.38349369357896,87.45347536795393,87.45347536805393,87.52341346728912,87.52341346738912,87.59309011578569,87.59309011588569,87.66272318914247,87.66272318924247,87.73218196194017,87.73218196204017,87.80118319577025,87.80118319587025,87.86929113923499,87.86929113933499,87.93731193242019,87.93731193252019,88.07298313010251,88.07298313020252,88.14048102161044,88.14048102171044,88.20782640012915,88.20782640022915,88.27499747808879,88.2749974781888,88.34208140576887,88.34208140586887,88.40901282045975,88.40901282055975,88.47581350973131,88.47581350983131,88.5425706238631,88.5425706239631,88.60891377416705,88.60891377426705,88.67510441148178,88.67510441158178,88.74105538552779,88.74105538562779,88.80683205901468,88.80683205911468,88.87208583082432,88.87208583092432,88.93701278908564,88.93701278918564,89.00185259706744,89.00185259716744,89.06660525476968,89.06660525486969,89.1312271870526,89.1312271871526,89.19550051821734,89.19550051831735,89.25973027424232,89.25973027434232,89.32369857942865,89.32369857952865,89.38742722134624,89.38742722144625,89.45080726214564,89.45080726224565,89.51370797640755,89.51370797650755,89.57649975282001,89.57649975292001,89.63907365353363,89.63907365363363,89.70147325368815,89.70147325378815,89.76356782786425,89.76356782796425,89.88745195023806,89.88745195033806,89.94900183516701,89.94900183526701,90.01018133140789,90.0101813315079,90.07127367736923,90.07127367746924,90.13232244819079,90.1323224482908,90.19206396481917,90.19206396491917,90.25163118088847,90.25163118098847,90.31037046930207,90.31037046940207,90.36882651930716,90.36882651940716,90.42726078174236,90.42726078184236,90.48504141708098,90.48504141718098,90.54269132700027,90.54269132710027,90.6001015736508,90.6001015737508,90.65749003273146,90.65749003283146,90.71437737770474,90.71437737780474,90.77091612155982,90.77091612165982,90.82743307784503,90.82743307794503,90.88368858329159,90.88368858339159,90.93968263789952,90.93968263799952,90.99565490493757,90.99565490503757,91.05112605786822,91.05112605796822,91.10655363565911,91.10655363575911,91.16193763831022,91.16193763841022,91.21684231442383,91.21684231452383,91.2716598402579,91.2716598403579,91.32619412768344,91.32619412778344,91.3807066275391,91.3807066276391,91.43506661440554,91.43506661450554,91.4891215752936,91.4891215753936,91.54300223562255,91.54300223572255,91.59631641913445,91.59631641923445,91.64904233825943,91.64904233835944,91.70172468224463,91.70172468234463,91.75377518670314,91.75377518680314,91.80521563920482,91.80521563930482,91.85661251656673,91.85661251666673,91.90785688093943,91.90785688103944,91.95901409503259,91.95901409513259,92.01006237127632,92.01006237137632,92.06108885995016,92.06108886005016,92.11185389778535,92.11185389788535,92.16205245880352,92.16205245890352,92.21166275543474,92.21166275553475,92.31079619841766,92.31079619851766,92.36012325664036,92.36012325674037,92.40934137701363,92.40934137711363,92.45851592224713,92.45851592234713,92.50758152963121,92.50758152973121,92.55614602290788,92.55614602300788,92.6041658269374,92.6041658270374,92.65209848068739,92.65209848078739,92.6994864451902,92.6994864452902,92.74672189670382,92.74672189680382,92.79358695952938,92.79358695962938,92.84040844721514,92.84040844731514,92.88720814733104,92.88720814743104,92.93385533445772,92.93385533455772,92.98045894644463,92.98045894654463,93.0269536205821,93.02695362068211,93.07338293200992,93.07338293210992,93.11968151801842,93.11968151811843,93.16591474131727,93.16591474141727,93.21193008891726,93.21193008901726,93.25777113595814,93.25777113605814,93.30308928132176,93.30308928142176,93.34832027640583,93.34832027650583,93.39326803308137,93.39326803318137,93.43782361349896,93.43782361359897,93.48196523008872,93.48196523018872,93.57009595027903,93.57009595037903,93.61391075332048,93.61391075342048,93.65755125580284,93.65755125590285,93.78832025026074,93.78832025036074,93.83143785106584,93.83143785116584,93.87433757617207,93.87433757627207,93.91712836342887,93.91712836352887,93.95981021283623,93.95981021293623,94.04504318623165,94.04504318633165,94.08752894751004,94.08752894761004,94.12986219579922,94.12986219589922,94.17165075484125,94.17165075494125,94.21326501332419,94.21326501342419,94.2545960333986,94.2545960334986,94.29560023992472,94.29560024002473,94.3364955086014,94.3364955087014,94.37734720213832,94.37734720223833,94.41798101997637,94.41798102007637,94.4584841123951,94.4584841124951,94.49892184210417,94.49892184220417,94.53925063396382,94.53925063406382,94.57949227554391,94.57949227564391,94.61960319170468,94.61960319180469,94.6596487451558,94.65964874525581,94.6995635731876,94.6995635732876,94.73873762384326,94.73873762394327,94.81702036244494,94.81702036254494,94.85604190011139,94.8560419002114,94.89495449992843,94.89495450002843,94.93384531217556,94.93384531227557,95.01158336153009,95.01158336163009,95.0503434483579,95.05034344845791,95.1665801337016,95.1665801338016,95.20520949511011,95.20520949521011,95.24357740567997,95.24357740577997,95.28177101569075,95.28177101579075,95.31992105056176,95.31992105066176,95.35780963459413,95.35780963469414,95.43328177668046,95.43328177678046,95.47084354716453,95.47084354726454,95.50827459222928,95.50827459232929,95.54544418645541,95.54544418655541,95.5825048428321,95.5825048429321,95.61932583594003,95.61932583604003,95.65575465279002,95.65575465289002,95.6920309566508,95.6920309567508,95.72824189780192,95.72824189790192,95.76440926381326,95.76440926391327,95.83661327041663,95.83661327051664,95.8726063358689,95.8726063359689,95.90840331319218,95.90840331329218,95.94411314023591,95.94411314033592,95.97960509158078,95.97960509168078,96.01507525535577,96.01507525545577,96.0504582688512,96.0504582689512,96.08579770720686,96.08579770730687,96.12111535799265,96.12111535809265,96.15625870821934,96.15625870831934,96.1912931205966,96.1912931206966,96.22628395783408,96.22628395793409,96.26101334423292,96.26101334433292,96.29541591708347,96.29541591718348,96.32966597694482,96.32966597704483,96.36378531138686,96.36378531148686,96.39788285825901,96.39788285835901,96.43182789214194,96.43182789224194,96.46564220060556,96.46564220070556,96.49899897010157,96.49899897020157,96.53178926278053,96.53178926288054,96.56442704247029,96.56442704257029,96.5968251588913,96.59682515899131,96.62907076232311,96.62907076242311,96.66103312734639,96.66103312744639,96.69288655452023,96.69288655462023,96.72460925627476,96.72460925637476,96.75628838288952,96.75628838298952,96.78794572193439,96.7879457220344,96.81945054799006,96.81945054809006,96.85091179890595,96.85091179900596,96.88213338655311,96.88213338665311,96.91331139906048,96.91331139916048,96.9444240488582,96.9444240489582,96.9752098851076,96.9752098852076,97.00590857107748,97.00590857117749,97.03654189433769,97.03654189443769,97.06713164245814,97.06713164255814,97.09761245272914,97.09761245282914,97.12807147543026,97.12807147553026,97.1585087105615,97.15850871066151,97.18879343270353,97.18879343280354,97.21892564185636,97.21892564195636,97.24899248829954,97.24899248839954,97.27899397203304,97.27899397213304,97.30884294277735,97.30884294287735,97.36849730912618,97.36849730922619,97.39825912959094,97.39825912969094,97.42797737491593,97.42797737501593,97.4573905942625,97.45739059436251,97.48662951304999,97.48662951314999,97.51525837988066,97.51525837998066,97.54369115858235,97.54369115868235,97.57192784915507,97.57192784925508,97.6001427521579,97.6001427522579,97.62818335460163,97.62818335470163,97.65607144405617,97.65607144415617,97.68356735725274,97.68356735735274,97.71099790773967,97.71099790783967,97.73816700738794,97.73816700748795,97.76529253189646,97.76529253199647,97.79202588014701,97.79202588024701,97.8187156532578,97.8187156533578,97.84518755066972,97.84518755076972,97.87163766051175,97.87163766061175,97.8980659827839,97.8980659828839,97.92438536720661,97.92438536730661,97.95068296405944,97.95068296415944,97.9767626852134,97.9767626853134,98.00273346851795,98.00273346861795,98.02868246425258,98.02868246435258,98.05434822157872,98.05434822167872,98.07981789077586,98.07981789087586,98.10520040969347,98.10520040979347,98.13038684048209,98.13038684058209,98.15555148370083,98.15555148380083,98.18062897664002,98.18062897674002,98.23076217494852,98.23076217504853,98.25544749162977,98.25544749172977,98.28011102074112,98.28011102084112,98.30475276228258,98.30475276238258,98.32935092868428,98.32935092878428,98.37826402307914,98.37826402317914,98.40255716350242,98.40255716360242,98.42680672878593,98.42680672888594,98.45062054267171,98.45062054277172,98.47432541870808,98.47432541880808,98.49779063147568,98.49779063157568,98.5212122691035,98.5212122692035,98.54456854402167,98.54456854412167,98.5676851556711,98.5676851557711,98.59064925433131,98.59064925443131,98.61346084000233,98.61346084010233,98.63616348782391,98.63616348792391,98.65880077293583,98.65880077303584,98.681198394779,98.681198394879,98.70335635335343,98.70335635345343,98.72547073678807,98.72547073688807,98.74738903209375,98.74738903219375,98.76915481441021,98.76915481451022,98.79085523401702,98.79085523411702,98.81240314063463,98.81240314073463,98.8338203218329,98.8338203219329,98.85517214032154,98.85517214042154,98.91918402064765,98.91918402074765,98.94023081315787,98.94023081325787,98.96112509267887,98.96112509277887,98.98156183323228,98.98156183333228,99.00186784836636,99.00186784846636,99.02215207593055,99.02215207603055,99.04239272835497,99.04239272845497,99.06228477966121,99.06228477976121,99.08208968068791,99.08208968078792,99.10154598059643,99.10154598069643,99.12098049293505,99.12098049303505,99.14013176686515,99.14013176696515,99.15915231537595,99.15915231547595,99.17762817463958,99.17762817473958,99.19592973334412,99.19592973344412,99.21420950447876,99.21420950457876,99.23209709935546,99.23209709945546,99.24996290666226,99.24996290676226,99.28543307043725,99.28543307053725,99.302928489056,99.302928489156,99.31992279356736,99.31992279366736,99.33672100994973,99.33672101004973,99.35308347493438,99.35308347503438,99.36927163935994,99.36927163945994,99.38535086593608,99.38535086603608,99.40138651737243,99.40138651747243,99.41737859366901,99.41737859376902,99.43317458183662,99.43317458193663,99.44886163215479,99.44886163225479,99.46439616948376,99.46439616958376,99.47956031812467,99.47956031822467,99.49468089162579,99.49468089172579,99.50977967755703,99.50977967765704,99.52476952563885,99.52476952573885,99.55472743423259,99.55472743433259,99.56963013203485,99.56963013213485,99.5844021044178,99.5844021045178,99.59908692652121,99.59908692662121,99.61364102320529,99.61364102330529,99.62817333231949,99.6281733324195,99.64209558947687,99.64209558957687,99.65597427149447,99.65597427159447,99.6698311659422,99.6698311660422,99.68327409656207,99.68327409666207,99.69660808933253,99.69660808943253,99.70985493182343,99.70985493192343,99.72294926132513,99.72294926142513,99.7359128654075,99.7359128655075,99.74837535538249,99.7483753554825,99.76081605778761,99.76081605788761,99.77321318505294,99.77321318515294,99.7855667371785,99.7855667372785,99.79783313902452,99.79783313912452,99.80994702788134,99.80994702798134,99.82193019131883,99.82193019141883,99.83389156718644,99.83389156728644,99.84578758034439,99.8457875804444,99.86951424395063,99.86951424405063,99.88108344356029,99.88108344366029,99.89250013018074,99.89250013028074,99.90376430381197,99.90376430391197,99.91500668987334,99.91500668997334,99.92611835051538,99.92611835061538,99.93720822358753,99.93720822368753,99.947470169004,99.94747016910401],[0.0,1e-10,2.9945361685490166,2.9945361686490166,5.945711329365823,5.945711329465823,8.658336358269572,8.658336358369572,11.139150081188857,11.139150081288857,13.381004606084407,13.381004606184407,15.585311167978476,15.585311168078476,17.780489096665768,17.780489096765766,19.83998625537868,19.839986255478678,21.82893027489673,21.82893027499673,23.711280277889372,23.71128027798937,25.54751345935153,25.54751345945153,27.232736656586418,27.232736656686416,28.874728024860886,28.874728024960884,30.50134711929186,30.50134711939186,32.113153714557114,32.113153714657116,33.58292825023478,33.58292825033478,34.95508669402673,34.955086694126734,36.231695906281665,36.23169590638167,37.49252377858242,37.49252377868242,38.73709665543242,38.73709665553242,39.95975220066803,39.95975220076803,41.15594762748115,41.15594762758115,42.31487497863168,42.31487497873168,43.473005727356146,43.47300572745615,44.60870242937904,44.608702429479045,45.71238432579231,45.71238432589231,46.771887082252,46.771887082352,47.82202437775662,47.82202437785662,48.79794846886555,48.79794846896555,49.77019096497834,49.77019096507834,50.71806173281266,50.71806173291266,51.66263844196622,51.662638442066225,52.586266660293845,52.58626666039385,53.49760136550574,53.49760136560574,54.40583578019457,54.405835780294574,55.310862255383846,55.31086225548385,56.18439064005067,56.184390640150674,57.036582997576176,57.03658299767618,57.888495467762795,57.888495467862796,58.72012687077774,58.72012687087774,59.489687873945634,59.489687874045636,60.25871063223105,60.25871063233105,61.026463132593825,61.02646313269383,61.7833861459212,61.7833861460212,62.53692898138663,62.53692898148663,63.276671218065395,63.2766712181654,63.97550684367603,63.97550684377603,64.66215660514743,64.66215660524743,65.34351003697527,65.34351003707528,66.01308667077456,66.01308667087456,66.6811562189029,66.6811562190029,67.29460467635766,67.29460467645767,67.87259356095494,67.87259356105494,68.44739603584797,68.44739603594797,69.00544832999837,69.00544833009837,69.56322073680988,69.56322073690988,70.09410242929292,70.09410242939292,70.62354162549093,70.62354162559093,71.14557457210609,71.14557457220609,71.65938313691701,71.65938313701702,72.16645287579935,72.16645287589935,72.662241001945,72.66224100204501,73.15749088320818,73.15749088330818,73.643138475768,73.643138475868,74.12002344164112,74.12002344174113,74.58358146422415,74.58358146432415,75.04371624935465,75.04371624945465,75.50146122720695,75.50146122730695,75.93782711832732,75.93782711842732,76.37143719564943,76.37143719574944,76.80315265098523,76.80315265108523,77.228602935889,77.228602935989,78.06014821972276,78.06014821982276,78.45026811054086,78.45026811064086,79.2255129796677,79.2255129797677,79.59922716646794,79.59922716656794,79.96923822847677,79.96923822857677,80.33459885470101,80.33459885480102,80.69772038221414,80.69772038231415,81.05797844695252,81.05797844705252,81.41558834686911,81.41558834696912,81.77134668439,81.77134668449,82.1134120721007,82.1134120722007,82.42671365329193,82.42671365339193,82.72998234987381,82.72998234997381,83.02752412090616,83.02752412100617,83.31725057624497,83.31725057634497,83.60686938260729,83.60686938270729,83.89487345432217,83.89487345442217,84.17198344961575,84.17198344971575,84.44717729312774,84.44717729322774,84.71935696529785,84.71935696539785,84.98660631434448,84.98660631444449,85.25303753116977,85.25303753126977,85.5159163317707,85.5159163318707,85.77681439120413,85.77681439130413,86.03754021227518,86.03754021237518,86.29458443835007,86.29458443845007,86.55087512158951,86.55087512168951,86.80279525638326,86.80279525648326,87.04959129989584,87.04959129999584,87.2943635426503,87.2943635427503,87.53616467365352,87.53616467375352,87.77456409699948,87.77456409709949,88.00379182754806,88.00379182764806,88.22929490350991,88.22929490360991,88.45107332488504,88.45107332498505,88.66813672108968,88.66813672118968,88.879344012973,88.879344013073,89.08865668287,89.08865668297,89.28634326330553,89.28634326340553,89.48398678415046,89.48398678425046,89.68158724540478,89.68158724550479,89.86637747845622,89.86637747855622,90.05112465191704,90.05112465201704,90.22775509255013,90.22775509265013,90.40341669239477,90.40341669249477,90.5770544914813,90.57705449158131,90.74668774864223,90.74668774874223,90.91459862217923,90.91459862227923,91.07938767539785,91.07938767549786,91.24271270253617,91.24271270263617,91.40401392891637,91.40401392901637,91.56438937409871,91.56438937419871,91.7236883295161,91.7236883296161,91.88031759031641,91.88031759041641,92.18767694800512,92.18767694810512,92.33519910539394,92.33519910549394,92.47514277483752,92.47514277493752,92.61491420591871,92.61491420601871,92.75296325337598,92.75296325347598,92.88853637437386,92.88853637447386,93.0228822970397,93.0228822971397,93.14977891053208,93.14977891063208,93.27639563668556,93.27639563678557,93.4021942306177,93.4021942307177,93.52717469232846,93.52717469242846,93.65202597526743,93.65202597536744,93.77440133174701,93.77440133184702,93.88745428686214,93.88745428696214,93.99374688625335,93.99374688635335,94.095173751907,94.095173752007,94.1956102469769,94.1956102470769,94.29576685470789,94.2957668548079,94.39269399314405,94.39269399324405,94.48294689503751,94.48294689513752,94.57143435371646,94.57143435381646,94.65787648184198,94.65787648194198,94.74412484180984,94.74412484190984,94.82776809654649,94.8277680966465,94.90678244529387,94.90678244539387,94.98534466833996,94.98534466843996,95.05813690624592,95.05813690634592,95.12677389365918,95.12677389375918,95.19398991458269,95.19398991468269,95.26053851185193,95.26053851195194,95.3268287515776,95.3268287516776,95.39279604437377,95.39279604447377,95.45848344983105,95.45848344993105,95.52255612064091,95.52255612074092,95.58654267226959,95.58654267236959,95.65029239614995,95.65029239624995,95.71212596824871,95.71212596834872,95.77324905710262,95.77324905720262,95.83407072882233,95.83407072892233,95.8911677459553,95.8911677460553,95.94441092972976,95.94441092982976,95.99651303435337,95.99651303445337,96.04730182146375,96.04730182156375,96.09339711319893,96.09339711329893,96.13927710698113,96.13927710708113,96.18405908120307,96.18405908130308,96.22735549954938,96.22735549964938,96.2703289709662,96.2703289710662,96.31250583995697,96.31250584005697,96.3512164119046,96.3512164120046,96.38938873896974,96.38938873906974,96.42650610606525,96.42650610616525,96.46108295731545,96.46108295741546,96.492947054358,96.492947054458,96.52422984692745,96.52422984702746,96.55508204359094,96.55508204369094,96.58479316110358,96.58479316120358,96.61424592107264,96.61424592117264,96.64212700598485,96.64212700608485,96.66968514396758,96.66968514406759,96.69653279870546,96.69653279880546,96.72170112941001,96.72170112951001,96.74646039400386,96.74646039410386,96.77083212228234,96.77083212238234,96.79518232076553,96.79518232086554,96.81948945965812,96.81948945975812,96.84291387694344,96.84291387704344,96.86610146648047,96.86610146658047,96.88924599642692,96.88924599652692,96.91232593698746,96.91232593708746,96.93516904979971,96.93516904989971,96.95786145404487,96.95786145414488,96.98040314972293,96.98040314982293,97.00283719642451,97.00283719652451,97.02520665374018,97.02520665384019,97.04733928330756,97.04733928340757,97.06923508512666,97.06923508522667,97.09108782735515,97.09108782745515,97.11274680142596,97.11274680152596,97.13425506692967,97.13425506702967,97.1556987430475,97.1556987431475,97.17699171059822,97.17699171069822,97.19815549937714,97.19815549947714,97.21925469877017,97.21925469887017,97.28250923735867,97.28250923745867,97.30330701961752,97.30330701971752,97.32395409330927,97.32395409340927,97.34414904129974,97.34414904139975,97.36421481051842,97.36421481061842,97.3842590499418,97.3842590500418,97.4042602297746,97.4042602298746,97.42391693288259,97.42391693298259,97.44348751680938,97.44348751690939,97.4627136240114,97.4627136241114,97.48191820141813,97.48191820151813,97.50084289148596,97.50084289158596,97.519638402782,97.519638402882,97.53789566919555,97.53789566929555,97.55598069724672,97.55598069734673,97.5740441955026,97.5740441956026,97.59172015744309,97.5917201575431,97.60937458958827,97.60937458968827,97.64442509633507,97.64442509643507,97.66171352196018,97.66171352206018,97.67850676229341,97.67850676239341,97.69510623446894,97.69510623456894,97.7112751107385,97.7112751108385,97.72727174864566,97.72727174874566,97.74316073757635,97.74316073767635,97.7590066669164,97.75900666701641,97.77480953666588,97.77480953676589,97.79041863825768,97.79041863835768,97.80592009087296,97.80592009097296,97.82127083492115,97.82127083502115,97.83625557244928,97.83625557254928,97.85119725038679,97.85119725048679,97.866117398529,97.866117398629,97.88092989769471,97.88092989779472,97.91053336623087,97.91053336633087,97.92525974621539,97.92525974631539,97.93985694742811,97.93985694752811,97.95436802945964,97.95436802955965,97.96874993271939,97.96874993281939,97.98311030618383,97.98311030628383,97.9968678453799,97.9968678454799,98.01058232498536,98.01058232508537,98.02427527479554,98.02427527489554,98.03755915849503,98.03755915859503,98.05073539321803,98.05073539331804,98.06382550875983,98.06382550885984,98.07676491573453,98.07676491583453,98.08957514393745,98.08957514403745,98.10189018684848,98.10189018694848,98.11418369996422,98.11418370006422,98.12643415348936,98.12643415358936,98.1386415474239,98.1386415475239,98.15076282217724,98.15076282227724,98.16273338836349,98.1627333884635,98.17457477577794,98.17457477587794,98.1863946333971,98.1863946334971,98.19814990163036,98.19814990173036,98.22159584871099,98.22159584881099,98.23302817001476,98.23302817011476,98.24430978275144,98.24430978285145,98.25544068692103,98.25544068702104,98.26655006129533,98.26655006139534,98.27753025689782,98.27753025699782,98.28848892270501,98.28848892280502,98.29862945629085,98.29862945639086],[0.0,1e-10,4.751530403555112,4.751530403655112,9.273651927649869,9.273651927749869,13.652763912286904,13.652763912386904,17.350040383242167,17.350040383342165,20.917587855216546,20.917587855316544,23.736853781466,23.736853781565998,26.23911992263056,26.23911992273056,28.549522333839423,28.54952233393942,30.77950489798465,30.77950489808465,32.99287053791172,32.99287053801172,35.04747630734247,35.04747630744247,37.083038691652284,37.083038691752286,39.07689627919552,39.076896279295525,40.9559302704464,40.9559302705464,42.76078388552651,42.76078388562651,44.48192459946063,44.481924599560635,45.931994966826814,45.931994966926815,47.36484179474914,47.36484179484914,48.79181745387991,48.79181745397991,50.16777243956379,50.16777243966379,51.542384205819346,51.54238420591935,52.88935164964678,52.88935164974678,54.19075795705857,54.190757957158574,55.48947782561372,55.48947782571372,56.71603214714059,56.71603214724059,57.90345978661009,57.903459786710094,59.06207320285906,59.06207320295906,60.191829066228514,60.191829066328516,61.31632037603211,61.31632037613211,62.425104684456095,62.425104684556096,63.475437282918406,63.47543728301841,64.51779722412873,64.51779722422873,65.48010562037672,65.48010562047672,66.43316313443286,66.43316313453286,67.36178272082527,67.36178272092528,68.28115142502583,68.28115142512583,69.19083595044474,69.19083595054474,70.09984886614949,70.09984886624949,70.89243498817967,70.89243498827967,71.68445782464313,71.68445782474313,72.45451252400463,72.45451252410463,73.21930266980027,73.21930266990027,73.95551690549975,73.95551690559975,74.68529668684096,74.68529668694096,75.35963616951949,75.35963616961949,76.03328237765437,76.03328237775438,76.6916982106584,76.6916982107584,77.34911746150593,77.34911746160593,77.97648759385204,77.97648759395204,78.59735827735142,78.59735827745142,79.2046451127611,79.2046451128611,79.74100129642339,79.7410012965234,80.26206211046636,80.26206211056636,80.78195302371692,80.78195302381692,81.27892254736798,81.27892254746799,81.77422387914838,81.77422387924838,82.23834952129393,82.23834952139393,82.7008286363983,82.7008286364983,83.1361617201528,83.1361617202528,83.56802843118903,83.56802843128904,83.99352568235547,83.99352568245547,84.41765804926409,84.41765804936409,84.81486103311772,84.81486103321772,85.18851434731668,85.18851434741669,85.55980619510132,85.55980619520132,85.92778332397413,85.92778332407413,86.29511050796226,86.29511050806227,86.6618094118952,86.66180941199521,87.02445699271368,87.02445699281368,87.38589134308077,87.38589134318077,87.74353434828727,87.74353434838727,88.09073490568,88.09073490578,88.43767548511886,88.43767548521886,88.77465024299272,88.77465024309272,89.10696706252644,89.10696706262644,89.43102958202478,89.43102958212478,89.75119243221508,89.75119243231508,90.05517165477701,90.05517165487701,90.35767766893368,90.35767766903368,90.65439917361674,90.65439917371674,90.94505452604285,90.94505452614285,91.23014201729026,91.23014201739026,91.50658524157151,91.50658524167152,91.77024621645418,91.77024621655418,92.03089578003785,92.03089578013785,92.28875058061743,92.28875058071743,92.54435223893014,92.54435223903015,92.79185125101391,92.79185125111391,93.03631718696921,93.03631718706922,93.27887661792947,93.27887661802947,93.52124106542432,93.52124106552432,93.75216648294891,93.75216648304891,93.96242365314087,93.96242365324088,94.16193506790624,94.16193506800624,94.3594533183586,94.3594533184586,94.55560668455315,94.55560668465316,94.7499835347296,94.7499835348296,94.93809924918367,94.93809924928367,95.12047378382313,95.12047378392313,95.30237169221384,95.30237169231384,95.48082489271576,95.48082489281576,95.65778321998295,95.65778322008295,95.83190345458705,95.83190345468705,95.99742275188397,95.99742275198398,96.16207545600133,96.16207545610133,96.3227201666632,96.3227201667632,96.48122005920564,96.48122005930564,96.63967662208911,96.63967662218911,96.7976782235533,96.7976782236533,96.94933202997719,96.94933203007719,97.10048754532282,97.10048754542282,97.25023484675167,97.25023484685167,97.39944052744328,97.39944052754328,97.54141015508552,97.54141015518552,97.67523380683984,97.67523380693984,97.80732427223505,97.80732427233505,97.9371182657044,97.9371182658044,98.05757471766394,98.05757471776394,98.16113260262196,98.16113260272196,98.26024919753472,98.26024919763472,98.3570909853511,98.35709098545111,98.45302285032896,98.45302285042897,98.54769815519644,98.54769815529644,98.64016364745603,98.64016364755604,98.71837368191177,98.71837368201177,98.79307401399028,98.79307401409028,98.86697274737769,98.86697274747769,98.9394632668483,98.93946326694831,99.01028559444826,99.01028559454826,99.0759516926298,99.0759516927298,99.13949463752141,99.13949463762141,99.2020843299155,99.2020843300155,99.25899783698343,99.25899783708343,99.31435147632814,99.31435147642814,99.36777694584832,99.36777694594832,99.41686944947068,99.41686944957068,99.46251724520427,99.46251724530427,99.50541360759274,99.50541360769274,99.54817998100428,99.54817998110428,99.58414359795623,99.58414359805623,99.61859067684394,99.61859067694394,99.64911642159412,99.64911642169412,99.67929552907246,99.67929552917246,99.70899801030205,99.70899801040206,99.73724894795588,99.73724894805588,99.76242347982225,99.76242347992225,99.78738136339372,99.78738136349372,99.81097436270737,99.81097436280737,99.83357077986453,99.83357077996453,99.85157425317,99.85157425327,99.86836449602407,99.86836449612407,99.88467811262939,99.88467811272939,99.89988682293075,99.89988682303076,99.91485722010773,99.91485722020774,99.92763946950632,99.92763946960632,99.93998842231512,99.93998842241513,99.9509941556956,99.9509941557956]],"coord_y":[[171055,171055,171055,146626,146626,130087,130087,125912,125912,123356,123356,120757,120757,110113,110113,100683,100683,94402,94402,94128,94128,86338,86338,86091,86091,83692,83692,75851,75851,74389,74389,70983,70983,68899,68899,66259,66259,65970,65970,63686,63686,60088,60088,58100,58100,52185,52185,50167,50167,49555,49555,47648,47648,44603,44603,43958,43958,43734,43734,42412,42412,41964,41964,41162,41162,40514,40514,40050,40050,37248,37248,36673,36673,33877,33877,33606,33606,31729,31729,30476,30476,30272,30272,30162,30162,30023,30023,30002,30002,30000,30000,29926,29926,29201,29201,28762,28762,28641,28641,28479,28479,28144,28144,27007,27007,26322,26322,25699,25699,24808,24808,23206,23206,22516,22516,22468,22468,22069,22069,21662,21662,21583,21583,21240,21240,20887,20887,20691,20691,19879,19879,19066,19066,18769,18769,18767,18767,18412,18412,18397,18397,18015,18015,17404,17404,16588,16588,16552,16552,16151,16151,15873,15873,15185,15185,14849,14849,14790,14790,14541,14541,14377,14377,14297,14297,14176,14176,14128,14128,14100,14100,14034,14034,13835,13835,13790,13790,13676,13676,13516,13516,13514,13514,12777,12777,12341,12341,12149,12149,12093,12093,11660,11660,11610,11610,11024,11024,11005,11005,10975,10975,10850,10850,10675,10675,10514,10514,10496,10496,10016,10016,9781,9781,9780,9780,9725,9725,9674,9674,9558,9558,9427,9427,9365,9365,9088,9088,9079,9079,8979,8979,8926,8926,8918,8918,8533,8533,8506,8506,8496,8496,8457,8457,8117,8117,7922,7922,7875,7875,7860,7860,7780,7780,7733,7733,7497,7497,7364,7364,7306,7306,7205,7205,7132,7132,7089,7089,7086,7086,7001,7001,6944,6944,6730,6730,6685,6685,6667,6667,6655,6655,6571,6571,6279,6279,6209,6209,6076,6076,6006,6006,5910,5910,5779,5779,5750,5750,5501,5501,5484,5484,5377,5377,5341,5341,5226,5226,5209,5209,5157,5157,5054,5054,4995,4995,4973,4973,4957,4957,4934,4934,4846,4846,4814,4814,4802,4802,4765,4765,4728,4728,4673,4673,4479,4479,4422,4422,4310,4310,4269,4269,4009,4009,3995,3995,3986,3986,3941,3941,3879,3879,3716,3716,3610,3610,3484,3484,3434,3434,3409,3409,3304,3304,3282,3282,3252,3252,3172,3172,3082,3082,2979,2979,2836,2836,2804,2804,2802,2802,2599,2599,2564,2564,2473,2473,2198,2198,2129,2129,2103,2103,1974,1974,1956,1956,1897,1897,1869,1869,1860,1860,1791,1791,1780,1780,1692,1692,1659,1659,1508,1508,1481,1481,1467,1467,1402,1402,1388,1388,1377,1377,1287,1287,1203,1203,1150,1150,1064,1064,1043,1043,1041,1041,1025,1025,1024,1024,1014,1014,1004,1004,443,443,377,377,0.0],[112338,112338,112338,82583,82583,77417,77417,71615,71615,68943,68943,65328,65328,64703,64703,63414,63414,60381,60381,58275,58275,58114,58114,52382,52382,51246,51246,49872,49872,48896,48896,47890,47890,45816,45816,43465,43465,41595,41595,41568,41568,41144,41144,38986,38986,38106,38106,36765,36765,36746,36746,36064,36064,35541,35541,34140,34140,33651,33651,31808,31808,31673,31673,31490,31490,30022,30022,29812,29812,29197,29197,29071,29071,28765,28765,28582,28582,28432,28432,28407,28407,28053,28053,27762,27762,27494,27494,26818,26818,26682,26682,25435,25435,25121,25121,24796,24796,24698,24698,24543,24543,24213,24213,23728,23728,23696,23696,23644,23644,22702,22702,22402,22402,21744,21744,20897,20897,20484,20484,20118,20118,19977,19977,19893,19893,19883,19883,19687,19687,19657,19657,19473,19473,19041,19041,18953,18953,18932,18932,18810,18810,18738,18738,17633,17633,17394,17394,17363,17363,17349,17349,17293,17293,17079,17079,16752,16752,16731,16731,16636,16636,16621,16621,16604,16604,16474,16474,16455,16455,16442,16442,16366,16366,16030,16030,15971,15971,15937,15937,15890,15890,15875,15875,15747,15747,15347,15347,15196,15196,15178,15178,15038,15038,14712,14712,14398,14398,14370,14370,14101,14101,14100,14100,14035,14035,14012,14012,13884,13884,13789,13789,13759,13759,13703,13703,13678,13678,13618,13618,13326,13326,13278,13278,13269,13269,13267,13267,13203,13203,13169,13169,13166,13166,12898,12898,12735,12735,12710,12710,12672,12672,12668,12668,12657,12657,12412,12412,12280,12280,12267,12267,12205,12205,12195,12195,12125,12125,12082,12082,11925,11925,11815,11815,11675,11675,11614,11614,11539,11539,11401,11401,11256,11256,11246,11246,11194,11194,11149,11149,11083,11083,10626,10626,10622,10622,10520,10520,10356,10356,10315,10315,10292,10292,10168,10168,10027,10027,9972,9972,9920,9920,9816,9816,9792,9792,9758,9758,9655,9655,9614,9614,9595,9595,9501,9501,9225,9225,9208,9208,9202,9202,9129,9129,9106,9106,9076,9076,9003,9003,8992,8992,8878,8878,8866,8866,8849,8849,8844,8844,8736,8736,8724,8724,8695,8695,8642,8642,8610,8610,8585,8585,8565,8565,8514,8514,8407,8407,8357,8357,8249,8249,8194,8194,7948,7948,7749,7749,7614,7614,7602,7602,7457,7457,7371,7371,7350,7350,7111,7111,7009,7009,6995,6995,6980,6980,6971,6971,6966,6966,6894,6894,6813,6813,6755,6755,6628,6628,6581,6581,6535,6535,6475,6475,6446,6446,6405,6405,6380,6380,6350,6350,6332,6332,6276,6276,6268,6268,6164,6164,6087,6087,6061,6061,6043,6043,5956,5956,5866,5866,5834,5834,5785,5785,5755,5755,5720,5720,5708,5708,5635,5635,5548,5548,5373,5373,5332,5332,5252,5252,5215,5215,5209,5209,5166,5166,5134,5134,5048,5048,5047,5047,5038,5038,5018,5018,4862,4862,4828,4828,4765,4765,4750,4750,4746,4746,4744,4744,4715,4715,4689,4689,4681,4681,4579,4579,4478,4478,4466,4466,4461,4461,4426,4426,4422,4422,4416,4416,4335,4335,4315,4315,4227,4227,4172,4172,4108,4108,4020,4020,3997,3997,3986,3986,3948,3948,3848,3848,3846,3846,3748,3748,3729,3729,3716,3716,3709,3709,3618,3618,3615,3615,3585,3585,3522,3522,3455,3455,3448,3448,3442,3442,3435,3435,3255,3255,3252,3252,3239,3239,3219,3219,3198,3198,3173,3173,3141,3141,3105,3105,3083,3083,3064,3064,3013,3013,2981,2981,2965,2965,2962,2962,2905,2905,2903,2903,2866,2866,2862,2862,2848,2848,2832,2832,2812,2812,2787,2787,2768,2768,2714,2714,2713,2713,2684,2684,2679,2679,2676,2676,2672,2672,2671,2671,2664,2664,2612,2612,2593,2593,2579,2579,2567,2567,2564,2564,2541,2541,2476,2476,2473,2473,2442,2442,2328,2328,2280,2280,2261,2261,2243,2243,2207,2207,2203,2203,2190,2190,2188,2188,2153,2153,2129,2129,2092,2092,1970,1970,1803,1803,1769,1769,1754,1754,1730,1730,1683,1683,1654,1654,1634,1634,1622,1622,1613,1613,1588,1588,1532,1532,1484,1484,1481,1481,1449,1449,1408,1408,1397,1397,1360,1360,1359,1359,1354,1354,1322,1322,1310,1310,1223,1223,1222,1222,1172,1172,1156,1156,1071,1071,1050,1050,1041,1041,1012,1012,717,717,0.0],[31311,31311,31311,28101,28101,27448,27448,27046,27046,26093,26093,24310,24310,24297,24297,24220,24220,23745,23745,23680,23680,22641,22641,22150,22150,21930,21930,21372,21372,20345,20345,20142,20142,20131,20131,19923,19923,19844,19844,19768,19768,19761,19761,19297,19297,19295,19295,19282,19282,19022,19022,18753,18753,18742,18742,17856,17856,17581,17581,17530,17530,17483,17483,17435,17435,17339,17339,17294,17294,17148,17148,16655,16655,16621,16621,16573,16573,16268,16268,16091,16091,15793,15793,15745,15745,15594,15594,15551,15551,15503,15503,15375,15375,15206,15206,15160,15160,15151,15151,14834,14834,14796,14796,14651,14651,14619,14619,14587,14587,14566,14566,14333,14333,14183,14183,14159,14159,14101,14101,14021,14021,13980,13980,13907,13907,13870,13870,13750,13750,13657,13657,13655,13655,13434,13434,13377,13377,13212,13212,13207,13207,13185,13185,13097,13097,13047,13047,13008,13008,12918,12918,12871,12871,12848,12848,12782,12782,12642,12642,12638,12638,12411,12411,12327,12327,12201,12201,12151,12151,12143,12143,12104,12104,12057,12057,12052,12052,11913,11913,11908,11908,11852,11852,11820,11820,11813,11813,11780,11780,11749,11749,11708,11708,11691,11691,11622,11622,11513,11513,11423,11423,11391,11391,11282,11282,11259,11259,11253,11253,11085,11085,10804,10804,10777,10777,10751,10751,10727,10727,10720,10720,10687,10687,10627,10627,10577,10577,10431,10431,10397,10397,10345,10345,10301,10301,10264,10264,10262,10262,10236,10236,10082,10082,10007,10007,9923,9923,9886,9886,9822,9822,9722,9722,9677,9677,9639,9639,9637,9637,9597,9597,9590,9590,9557,9557,9555,9555,9528,9528,9499,9499,9487,9487,9387,9387,9204,9204,9182,9182,9178,9178,9051,9051,8854,8854,8822,8822,8819,8819,8780,8780,8747,8747,8716,8716,8679,8679,8672,8672,8667,8667,8643,8643,8624,8624,8588,8588,8583,8583,8581,8581,8490,8490,8458,8458,8434,8434,8433,8433,8381,8381,8317,8317,8223,8223,8187,8187,8186,8186,8160,8160,8159,8159,8103,8103,8057,8057,8046,8046,8044,8044,8025,8025,7952,7952,7930,7930,7927,7927,7903,7903,7880,7880,7879,7879,7876,7876,7871,7871,7869,7869,7862,7862,7853,7853,7843,7843,7841,7841,7835,7835,7832,7832,7804,7804,7757,7757,7744,7744,7736,7736,7699,7699,7681,7681,7643,7643,7609,7609,7586,7586,7560,7560,7552,7552,7548,7548,7492,7492,7491,7491,7483,7483,7458,7458,7449,7449,7417,7417,7385,7385,7371,7371,7366,7366,7349,7349,7338,7338,7333,7333,7317,7317,7309,7309,7282,7282,7275,7275,7274,7274,7223,7223,7189,7189,7163,7163,7133,7133,7127,7127,7109,7109,7047,7047,7027,7027,7001,7001,6969,6969,6965,6965,6896,6896,6852,6852,6830,6830,6782,6782,6772,6772,6760,6760,6752,6752,6710,6710,6682,6682,6674,6674,6665,6665,6659,6659,6632,6632,6599,6599,6576,6576,6572,6572,6570,6570,6540,6540,6530,6530,6500,6500,6492,6492,6470,6470,6464,6464,6458,6458,6456,6456,6449,6449,6419,6419,6412,6412,6392,6392,6340,6340,6327,6327,6322,6322,6308,6308,6305,6305,6297,6297,6274,6274,6254,6254,6244,6244,6240,6240,6207,6207,6181,6181,6136,6136,6116,6116,6070,6070,6068,6068,6055,6055,6041,6041,6033,6033,6012,6012,5947,5947,5939,5939,5920,5920,5918,5918,5894,5894,5891,5891,5881,5881,5880,5880,5870,5870,5854,5854,5852,5852,5843,5843,5828,5828,5814,5814,5805,5805,5799,5799,5793,5793,5790,5790,5786,5786,5783,5783,5777,5777,5725,5725,5708,5708,5662,5662,5645,5645,5624,5624,5621,5621,5528,5528,5520,5520,5514,5514,5459,5459,5457,5457,5448,5448,5419,5419,5409,5409,5407,5407,5405,5405,5393,5393,5392,5392,5376,5376,5375,5375,5362,5362,5331,5331,5325,5325,5317,5317,5289,5289,5288,5288,5270,5270,5251,5251,5241,5241,5217,5217,5154,5154,5152,5152,5147,5147,5109,5109,5090,5090,5084,5084,5074,5074,5067,5067,5053,5053,5008,5008,5003,5003,4996,4996,4973,4973,4963,4963,4943,4943,4937,4937,4932,4932,4929,4929,4917,4917,4903,4903,4881,4881,4849,4849,4845,4845,4843,4843,4826,4826,4786,4786,4783,4783,4775,4775,4767,4767,4758,4758,4714,4714,4711,4711,4692,4692,4676,4676,4665,4665,4662,4662,4652,4652,4651,4651,4611,4611,4585,4585,4571,4571,4569,4569,4537,4537,4522,4522,4502,4502,4500,4500,4486,4486,4463,4463,4454,4454,4435,4435,4420,4420,4410,4410,4405,4405,4401,4401,4382,4382,4375,4375,4358,4358,4349,4349,4330,4330,4328,4328,4321,4321,4286,4286,4281,4281,4280,4280,4279,4279,4276,4276,4266,4266,4261,4261,4259,4259,4253,4253,4243,4243,4238,4238,4196,4196,4187,4187,4178,4178,4155,4155,4150,4150,4134,4134,4124,4124,4110,4110,4105,4105,4092,4092,4086,4086,4061,4061,4053,4053,4031,4031,4022,4022,4014,4014,4008,4008,4006,4006,4002,4002,3994,3994,3993,3993,3987,3987,3968,3968,3956,3956,3950,3950,3949,3949,3948,3948,3934,3934,3916,3916,3885,3885,3860,3860,3820,3820,3795,3795,3786,3786,3742,3742,3737,3737,3731,3731,3715,3715,3698,3698,3688,3688,3674,3674,3670,3670,3669,3669,3662,3662,3649,3649,3628,3628,3581,3581,3565,3565,3563,3563,3525,3525,3517,3517,3485,3485,3473,3473,3470,3470,3452,3452,3449,3449,3418,3418,3398,3398,3387,3387,3385,3385,3381,3381,3371,3371,3360,3360,3348,3348,3345,3345,3338,3338,3292,3292,3291,3291,3285,3285,3264,3264,3262,3262,3257,3257,3245,3245,3235,3235,3224,3224,3217,3217,3212,3212,3210,3210,3198,3198,3196,3196,3188,3188,3167,3167,3126,3126,3122,3122,3105,3105,3098,3098,3091,3091,3083,3083,3079,3079,3072,3072,3066,3066,3064,3064,3045,3045,3038,3038,3027,3027,3019,3019,2995,2995,2980,2980,2976,2976,2972,2972,2966,2966,2950,2950,2948,2948,2936,2936,2925,2925,2909,2909,2887,2887,2882,2882,2872,2872,2864,2864,2850,2850,2836,2836,2825,2825,2808,2808,2804,2804,2802,2802,2742,2742,2734,2734,2696,2696,2683,2683,2682,2682,2652,2652,2646,2646,2635,2635,2634,2634,2611,2611,2595,2595,2594,2594,2582,2582,2570,2570,2569,2569,2546,2546,2544,2544,2542,2542,2520,2520,2516,2516,2503,2503,2502,2502,2495,2495,2481,2481,2473,2473,2447,2447,2420,2420,2418,2418,2389,2389,2361,2361,2359,2359,2352,2352,2348,2348,2343,2343,2342,2342,2330,2330,2304,2304,2277,2277,2273,2273,2264,2264,2259,2259,2257,2257,2252,2252,2229,2229,2204,2204,2200,2200,2175,2175,2168,2168,2151,2151,2149,2149,2148,2148,2141,2141,2139,2139,2134,2134,2131,2131,2125,2125,2122,2122,2112,2112,2104,2104,2080,2080,2076,2076,2063,2063,2045,2045,2026,2026,2019,2019,2011,2011,2003,2003,1996,1996,1979,1979,1969,1969,1964,1964,1959,1959,1953,1953,1950,1950,1943,1943,1918,1918,1910,1910,1897,1897,1882,1882,1877,1877,1875,1875,1865,1865,1859,1859,1856,1856,1851,1851,1847,1847,1841,1841,1838,1838,1832,1832,1798,1798,1795,1795,1791,1791,1786,1786,1785,1785,1783,1783,1779,1779,1777,1777,1773,1773,1761,1761,1753,1753,1751,1751,1739,1739,1725,1725,1724,1724,1718,1718,1706,1706,1701,1701,1690,1690,1672,1672,1665,1665,1662,1662,1660,1660,1654,1654,1652,1652,1643,1643,1639,1639,1629,1629,1628,1628,1624,1624,1622,1622,1621,1621,1613,1613,1608,1608,1606,1606,1594,1594,1579,1579,1572,1572,1566,1566,1565,1565,1558,1558,1552,1552,1531,1531,1505,1505,1498,1498,1487,1487,1480,1480,1467,1467,1462,1462,1456,1456,1454,1454,1453,1453,1446,1446,1444,1444,1433,1433,1431,1431,1428,1428,1413,1413,1409,1409,1406,1406,1404,1404,1399,1399,1398,1398,1397,1397,1390,1390,1383,1383,1380,1380,1377,1377,1370,1370,1368,1368,1366,1366,1364,1364,1350,1350,1342,1342,1314,1314,1305,1305,1296,1296,1295,1295,1287,1287,1280,1280,1262,1262,1259,1259,1247,1247,1245,1245,1227,1227,1225,1225,1215,1215,1214,1214,1213,1213,1208,1208,1207,1207,1197,1197,1192,1192,1191,1191,1178,1178,1169,1169,1165,1165,1156,1156,1155,1155,1151,1151,1150,1150,1133,1133,1132,1132,1131,1131,1129,1129,1116,1116,1115,1115,1113,1113,1093,1093,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1039,1039,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,510,510,509,509,471,471,0.0],[139088,139088,139088,137074,137074,125994,125994,115227,115227,104128,104128,102384,102384,101960,101960,95658,95658,92381,92381,87430,87430,85288,85288,78274,78274,76266,76266,75552,75552,74864,74864,68267,68267,63733,63733,59295,59295,58562,58562,57807,57807,56789,56789,55560,55560,53829,53829,53792,53792,52750,52750,51263,51263,49211,49211,48776,48776,45329,45329,45158,45158,44026,44026,43873,43873,42900,42900,42329,42329,42185,42185,42036,42036,40573,40573,39582,39582,39569,39569,38627,38627,35744,35744,35719,35719,35660,35660,35157,35157,35000,35000,34359,34359,32459,32459,31893,31893,31647,31647,31100,31100,31030,31030,28493,28493,26846,26846,26698,26698,25920,25920,25907,25907,24658,24658,24591,24591,24247,24247,23865,23865,23552,23552,23028,23028,23003,23003,22557,22557,22150,22150,21531,21531,21372,21372,21261,21261,20268,20268,20140,20140,20052,20052,19761,19761,18862,18862,18120,18120,17888,17888,17358,17358,17186,17186,16970,16970,16866,16866,16733,16733,16610,16610,16524,16524,15888,15888,14552,14552,14086,14086,13820,13820,13457,13457,13452,13452,13377,13377,12871,12871,12782,12782,12642,12642,12413,12413,12375,12375,12210,12210,12118,12118,12110,12110,11939,11939,11904,11904,11701,11701,11463,11463,11369,11369,11231,11231,11073,11073,10647,10647,10474,10474,10301,10301,10082,10082,9810,9810,9722,9722,9182,9182,9180,9180,9178,9178,8583,8583,8581,8581,8204,8204,8159,8159,8065,8065,7879,7879,7799,7799,7654,7654,7586,7586,7492,7492,7449,7449,7399,7399,7275,7275,7001,7001,6852,6852,6500,6500,6492,6492,6412,6412,6297,6297,6240,6240,5894,5894,5881,5881,5843,5843,5805,5805,5799,5799,5684,5684,5251,5251,4937,4937,4711,4711,4665,4665,4652,4652,4502,4502,4192,4192,4110,4110,4015,4015,4006,4006,3885,3885,3670,3670,3649,3649,3381,3381,3188,3188,3122,3122,3091,3091,3079,3079,3064,3064,3051,3051,2976,2976,2972,2972,2961,2961,2872,2872,2839,2839,2825,2825,2652,2652,2473,2473,2420,2420,2359,2359,2141,2141,2131,2131,2080,2080,2011,2011,1996,1996,1959,1959,1798,1798,1773,1773,1724,1724,1606,1606,1480,1480,1453,1453,1433,1433,1380,1380,1368,1368,1295,1295,1280,1280,1247,1247,1169,1169,1150,1150,1132,1132,1131,1131,1129,1129,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1039,1039,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,510,510,509,509,471,471,0.0],[219320,219320,219320,208731,208731,202130,202130,170658,170658,164670,164670,130131,130131,115499,115499,106643,106643,102931,102931,102164,102164,94836,94836,93957,93957,92032,92032,86732,86732,83308,83308,79444,79444,66932,66932,66137,66137,65866,65866,63511,63511,63449,63449,62173,62173,60070,60070,59946,59946,56615,56615,54809,54809,53479,53479,52147,52147,51904,51904,51179,51179,48481,48481,48113,48113,44418,44418,43991,43991,42863,42863,42436,42436,41989,41989,41958,41958,36584,36584,36558,36558,35544,35544,35301,35301,33982,33982,33685,33685,31126,31126,31094,31094,30391,30391,30345,30345,28958,28958,28658,28658,28031,28031,24757,24757,24051,24051,23997,23997,22939,22939,22862,22862,21423,21423,21347,21347,20094,20094,19934,19934,19640,19640,19577,19577,18334,18334,17247,17247,17138,17138,16985,16985,16955,16955,16926,16926,16739,16739,16683,16683,16508,16508,16026,16026,16014,16014,15554,15554,15339,15339,14958,14958,14778,14778,14031,14031,13963,13963,13696,13696,13416,13416,13159,13159,12760,12760,12170,12170,12031,12031,11902,11902,11798,11798,11424,11424,11284,11284,11196,11196,11187,11187,10659,10659,9705,9705,9209,9209,9117,9117,9054,9054,8972,8972,8683,8683,8418,8418,8396,8396,8237,8237,8168,8168,8037,8037,7640,7640,7600,7600,7415,7415,7316,7316,7314,7314,7293,7293,7000,7000,6977,6977,6912,6912,6887,6887,6553,6553,6177,6177,6097,6097,5991,5991,5560,5560,4780,4780,4575,4575,4470,4470,4428,4428,4370,4370,4268,4268,3610,3610,3448,3448,3411,3411,3346,3346,3269,3269,3031,3031,2933,2933,2889,2889,2627,2627,2555,2555,2466,2466,2266,2266,2107,2107,1980,1980,1974,1974,1660,1660,1590,1590,1409,1409,1393,1393,1371,1371,1304,1304,1162,1162,1152,1152,1089,1089,1043,1043,831,831,775,775,753,753,702,702,691,691,590,590,570,570,508,508,0.0]]}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"coord_x":[[0.0,1e-10,3.5637052284204738,3.5637052285204738,6.618464474407907,6.618464474507907,9.328655477591294,9.328655477691294,11.951865864431074,11.951865864531074,14.521825363756063,14.521825363856063,17.03763812730212,17.03763812740212,19.33169719495325,19.33169719505325,21.429294654910915,21.429294655010914,23.396035767262788,23.396035767362786,25.35706845114085,25.35706845124085,27.15580676344606,27.155806763546057,28.94939915665261,28.94939915675261,30.6930115501925,30.6930115502925,32.273267054450905,32.27326705455091,33.82306371772863,33.82306371782863,35.30190086501442,35.30190086511442,36.737320622010365,36.73732062211037,38.11773946232437,38.117739462424375,39.49213736895615,39.49213736905615,40.81895114918582,40.81895114928582,42.070805346755776,42.07080534685578,43.28124218736979,43.28124218746979,44.36844780746346,44.36844780756346,45.41361106018434,45.41361106028434,46.44602410040167,46.446024100501674,47.43870731178853,47.43870731188853,48.3679519658661,48.3679519659661,49.2837588959816,49.2837588960816,50.194899081651364,50.194899081751366,51.078497141619025,51.078497141719026,51.952761712695214,51.952761712795215,52.8103176719612,52.8103176720612,53.654373406223435,53.65437340632344,54.48876231270521,54.488762312805214,55.2647752462541,55.264775246354105,56.028808813480225,56.02880881358023,56.73459140985683,56.734591409956835,57.434728078801314,57.434728078901315,58.095759929332154,58.095759929432155,58.73068717811964,58.73068717821964,59.3613643560726,59.3613643561726,59.98974982916382,59.98974982926382,60.61523942065701,60.615239420757014,61.24029150485841,61.240291504958414,61.865301921698695,61.8653019217987,62.488770646177436,62.48877064627744,63.097134952249206,63.09713495234921,63.69635327255454,63.69635327265454,64.29305071751196,64.29305071761196,64.88637310621844,64.88637310631844,65.47271621193687,65.47271621203687,66.03537142285705,66.03537142295706,66.58375556259271,66.58375556269272,67.11916031933866,67.11916031943866,67.63600226670445,67.63600226680445,68.11946865781097,68.11946865791097,68.58855980933015,68.58855980943015,69.05665094418241,69.05665094428241,69.51642944049067,69.51642944059067,69.96772862881048,69.96772862891048,70.41738195636594,70.41738195646595,70.85988933148886,70.85988933158886,71.29504241737362,71.29504241747362,71.72611210186837,71.72611210196837,72.1402648377473,72.1402648378473,72.53747979132986,72.53747979142986,72.9285071417857,72.9285071418857,73.31949282488041,73.31949282498041,73.70308255137586,73.70308255147586,74.08635977266287,74.08635977276288,74.46167852797547,74.46167852807547,74.82426790446507,74.82426790456508,75.16985699761663,75.16985699771664,75.51469607826797,75.51469607836798,75.85118085301421,75.85118085311422,76.18187386456441,76.18187386466441,76.4982333038884,76.4982333039884,76.80759262654378,76.80759262664378,77.11572276204603,77.11572276214604,77.41866531108852,77.41866531118852,77.71819113651894,77.71819113661894,78.01605026750445,78.01605026760446,78.31138852314206,78.31138852324206,78.6057267621127,78.6057267622127,78.89948165802764,78.89948165812764,79.19186153102552,79.19186153112553,79.48009550159169,79.4800955016917,79.7673919565326,79.76739195663261,80.05231337188953,80.05231337198953,80.33390139835664,80.33390139845665,80.61544775746262,80.61544775756262,80.8816396939949,80.8816396940949,81.13874814580242,81.13874814590243,81.39185653094218,81.39185653104218,81.6437982299705,81.6437982300705,81.88671894531575,81.88671894541575,82.12859797663295,82.12859797673295,82.35826847114119,82.35826847124119,82.58754312571877,82.58754312581877,82.81619276987949,82.8161927699795,83.04223820397007,83.04223820407007,83.2646377439624,83.2646377440624,83.48368306138435,83.48368306148436,83.7023533725562,83.7023533726562,83.91102351705862,83.91102351715863,84.11479774662911,84.11479774672911,84.31855114251904,84.31855114261904,84.5211586859781,84.5211586860781,84.72270371172853,84.72270371182853,84.92183203053384,84.92183203063384,85.11823113718562,85.11823113728562,85.31333855564259,85.31333855574259,85.50267504458408,85.50267504468408,85.69182403040051,85.69182403050051,85.87888964816081,85.87888964826081,86.06485108085134,86.06485108095134,86.2506458440974,86.25064584419741,86.42841964032733,86.42841964042734,86.60563092718212,86.60563092728212,86.78263387723129,86.78263387733129,86.95882431373856,86.95882431383856,87.12793129885497,87.12793129895498,87.29297571626194,87.29297571636194,87.45704095068251,87.45704095078251,87.62079367989466,87.62079367999466,87.78287971466192,87.78287971476192,87.94398656644277,87.94398656654278,88.10017666961116,88.10017666971116,88.25359589326489,88.25359589336489,88.40580676344605,88.40580676354605,88.55591343189053,88.55591343199053,88.70449924165403,88.70449924175404,88.85218920315339,88.85218920325339,88.99981666361106,88.99981666371106,89.14567326122102,89.14567326132102,89.29034233903899,89.29034233913899,89.43055300921682,89.43055300931682,89.56982616376939,89.5698261638694,89.70872431207187,89.70872431217187,89.84737245620761,89.84737245630761,89.98427057117618,89.98427057127618,90.11508525142085,90.11508525152085,90.24444157402624,90.24444157412624,90.37102701711696,90.37102701721696,90.49615410256838,90.49615410266838,90.61928115468591,90.61928115478591,90.7396789946499,90.73967899474991,90.85947265787763,90.85947265797763,90.97407873464557,90.97407873474558,91.08833063884398,91.08833063894399,91.20035333922232,91.20035333932232,91.31162602710044,91.31162602720045,91.42050284171403,91.42050284181403,91.52902548375806,91.52902548385806,91.6364647744129,91.6364647745129,91.74175819596994,91.74175819606994,91.84582243037384,91.84582243047385,91.94942832380539,91.9494283239054,92.05270087834798,92.05270087844798,92.15549425823764,92.15549425833764,92.25645427423791,92.25645427433791,92.35674761246021,92.35674761256021,92.45679094651578,92.45679094661578,92.55606343439057,92.55606343449057,92.6545650760846,92.6545650761846,92.75192086534776,92.75192086544776,92.84523492058202,92.84523492068202,92.93736145602426,92.93736145612426,93.02715461924366,93.02715461934366,93.11609360156002,93.11609360166003,93.19961582693045,93.19961582703046,93.28284638077301,93.28284638087301,93.36588943149053,93.36588943159053,93.44799496658278,93.44799496668278,93.52880881348023,93.52880881358023,93.60622677044617,93.60622677054617,93.68143635727262,93.68143635737262,93.75402090034834,93.75402090044834,93.82556375939599,93.82556375949599,93.8965857764296,93.8965857765296,93.96542025700428,93.96542025710428,94.0337963966066,94.0337963967066,94.1015475257921,94.1015475258921,94.16763196053267,94.16763196063268,94.23184136402273,94.23184136412273,94.29390489841498,94.29390489851498,94.35298921648695,94.35298921658695,94.41140685678094,94.41140685688094,94.46978282971382,94.46978282981382,94.52392956549276,94.52392956559277,94.57734712245204,94.57734712255204,94.62886881448024,94.62886881458024,94.67466124435407,94.67466124445407,94.71901615026917,94.71901615036917,94.76282938048968,94.76282938058968,94.80395506591776,94.80395506601776,94.84470574509575,94.84470574519575,94.88422723712061,94.88422723722061,94.92316538608976,94.92316538618977,94.96191603193387,94.96191603203387,94.99922915381923,94.99922915391923,95.03631310521843,95.03631310531843,95.07156369272822,95.07156369282822,95.10612676877948,95.10612676887948,95.13754395906598,95.13754395916598,95.16839863997733,95.16839864007733,95.19896164936083,95.19896164946083,95.22817046950783,95.22817046960783,95.25708761812697,95.25708761822698,95.28577559625994,95.28577559635994,95.31258854314238,95.31258854324238,95.33765146085769,95.33765146095769,95.36161019350322,95.36161019360323,95.38377722962049,95.3837772297205,95.40550675844598,95.40550675854598,95.42719461991034,95.42719462001034,95.4485491424857,95.4485491425857,95.46988283138052,95.46988283148052,95.49100818346973,95.49100818356973,95.51192519875332,95.51192519885332,95.52115451924199,95.52115451934199,95.52900881681362,95.52900881691362],[0.0,1e-10,2.340414006900115,2.340414007000115,4.060921848697478,4.060921848797478,5.673802896714945,5.673802896814945,7.165806930115502,7.165806930215502,8.60214336905615,8.60214336915615,9.963166052767546,9.963166052867546,11.311167686128103,11.311167686228103,12.632314705245088,12.632314705345088,13.89027317121952,13.89027317131952,15.104355905931765,15.104355906031765,16.315084418073635,16.315084418173633,17.406394273237886,17.406394273337884,18.474037067284456,18.474037067384455,19.513054384239737,19.513054384339735,20.53173802896715,20.53173802906715,21.52946299104985,21.52946299114985,22.483978899648328,22.483978899748326,23.389514825247087,23.389514825347085,24.256091768196136,24.256091768296134,25.12210620177003,25.12210620187003,25.97928715478591,25.97928715488591,26.791509025150418,26.791509025250416,27.585397256620944,27.585397256720942,28.351347522458706,28.351347522558704,29.116901948365808,29.116901948465806,29.868247804130068,29.868247804230066,30.60869764496075,30.608697645060747,31.319959499324987,31.319959499424986,32.02103368389473,32.02103368399473,32.68371139518992,32.68371139528992,33.343576559609325,33.34357655970933,33.99962916048601,33.99962916058601,34.625097918298636,34.62509791839864,35.24619160319339,35.24619160329339,35.85447257454291,35.85447257464291,36.4601285021417,36.4601285022417,37.05940932348872,37.059409323588724,37.65487758129302,37.65487758139302,38.24722078701312,38.24722078711312,38.83904315071918,38.83904315081918,39.423490391506526,39.42349039160653,40.00187503125052,40.00187503135052,40.57467624460408,40.57467624470408,41.133393889898166,41.13339388999817,41.68927815463591,41.68927815473591,42.21918281971366,42.21918281981366,42.742545709095154,42.742545709195156,43.25913765229421,43.25913765239421,43.77368789479824,43.773687894898245,44.28500891681528,44.28500891691528,44.78945482424707,44.789454824347075,45.28379639660661,45.28379639670661,45.777471291188185,45.77747129128819,46.270062834380575,46.270062834480576,46.743029050484175,46.74302905058418,47.209745162419374,47.209745162519376,47.662752712545206,47.66275271264521,48.09811413523559,48.09811413533559,48.52487124785413,48.52487124795413,48.94400323338722,48.94400323348722,49.36019766996117,49.36019767006117,49.77464207736796,49.77464207746796,50.188878147969135,50.188878148069136,50.599030817180285,50.59903081728029,51.0085584759746,51.008558476074604,51.414252737545624,51.414252737645626,51.81094684911415,51.810946849214154,52.20580759679328,52.20580759689328,52.60023083718062,52.60023083728062,52.99211236853947,52.992112368639475,53.38249387489792,53.38249387499792,53.74985416423607,53.74985416433607,54.112235203920065,54.11223520402007,54.47397039950666,54.473970399606664,54.83541392356539,54.83541392366539,55.195690761512694,55.195690761612695,55.55150919181986,55.55150919191986,55.900515008583476,55.90051500868348,56.2490833180553,56.2490833181553,56.5956724278738,56.5956724279738,56.941949032483876,56.94194903258388,57.28787146452441,57.28787146462441,57.63108551809197,57.63108551819197,57.97390373172886,57.97390373182886,58.31645110751846,58.31645110761846,58.657415123585395,58.6574151236854,58.991379022983715,58.99137902308372,59.32411373522892,59.32411373532892,59.65614010233504,59.65614010243504,59.98718728645478,59.98718728655478,60.31792196536609,60.31792196546609,60.64598993316555,60.645989933265554,60.96572442874048,60.96572442884048,61.28231303855064,61.28231303865064,61.5985266421107,61.5985266422107,61.91182353039218,61.91182353049218,62.21832863881065,62.21832863891065,62.51829197153286,62.51829197163286,62.81767196119935,62.817671961299354,63.11144769079485,63.11144769089485,63.40520258670978,63.40520258680978,63.69760329338823,63.69760329348823,63.98952482541376,63.98952482551376,64.27877964632744,64.27877964642744,64.5660552675878,64.5660552676878,64.85270587843131,64.85270587853131,65.13818980316339,65.13818980326339,65.42315288588144,65.42315288598144,65.70686594776579,65.7068659478658,65.98449557492624,65.98449557502624,66.26112518541976,66.26112518551976,66.53756729278821,66.53756729288821,66.81396773279555,66.81396773289555,67.08903481724695,67.08903481734696,67.36339355655927,67.36339355665928,67.63768979482991,67.63768979492991,67.90640260671012,67.90640260681012,68.17171952865881,68.17171952875881,68.43651560859348,68.43651560869348,68.70052000866681,68.70052000876682,68.9644410740179,68.9644410741179,69.22813296888282,69.22813296898282,69.4867206120102,69.4867206121102,69.74255820930348,69.74255820940348,69.99812496874948,69.99812496884948,70.25240004000067,70.25240004010067,70.50646677444624,70.50646677454624,70.75907515125252,70.75907515135252,71.01078767979466,71.01078767989466,71.25922932048867,71.25922932058867,71.50537925632094,71.50537925642094,71.74861247687461,71.74861247697461,71.99057484291404,71.99057484301404,72.23097468291138,72.23097468301138,72.46849947499125,72.46849947509125,72.70300338338973,72.70300338348973,72.93729895498258,72.93729895508258,73.40480674677912,73.40480674687912,73.63708145135752,73.63708145145752,73.86798113301889,73.86798113311889,74.08935982266371,74.08935982276371,74.3106551775863,74.3106551776863,74.52982549709162,74.52982549719162,74.74557909298488,74.74557909308488,74.96047850797514,74.96047850807514,75.17489874831247,75.17489874841247,75.38673561226021,75.38673561236021,75.59563492724878,75.59563492734878,75.8033883898065,75.8033883899065,76.01005850097502,76.01005850107502,76.21456190936516,76.21456190946516,76.41856530942182,76.41856530952182,76.62186036433941,76.62186036443941,76.82300955015917,76.82300955025917,77.02330455507592,77.02330455517593,77.223203720062,77.223203720162,77.42114451907531,77.42114451917531,77.61333522225371,77.61333522235371,77.80517175286255,77.80517175296255,77.99688328138802,77.99688328148802,78.18707395123252,78.18707395133252,78.37678544642411,78.37678544652411,78.56587193119886,78.56587193129886,78.75343755729263,78.75343755739263,78.94077401290022,78.94077401300022,79.12573542892382,79.12573542902382,79.31044684078068,79.31044684088069,79.49480408006801,79.49480408016801,79.67905715095252,79.67905715105252,79.86106018433641,79.86106018443641,80.04281321355356,80.04281321365356,80.22396206603443,80.22396206613443,80.40400673344556,80.40400673354556,80.58338472307872,80.58338472317872,80.76224187069785,80.76224187079785,80.94068234470575,80.94068234480575,81.11806030100502,81.11806030110502,81.29320905348422,81.29320905358422,81.46731612193537,81.46731612203537,81.63917315288589,81.63917315298589,81.80988433140553,81.80988433150553,81.97547042450708,81.97547042460708,82.13691061517692,82.13691061527692,82.29553825897098,82.29553825907098,82.45391589859831,82.45391589869831,82.60927265454424,82.60927265464424,82.7628377139619,82.7628377140619,82.91596526608777,82.91596526618777,83.06411356855948,83.06411356865948,83.21013683561392,83.21013683571393,83.35586843114052,83.35586843124052,83.50128752145869,83.5012875215587,83.64651910865182,83.64651910875182,83.79164652744213,83.79164652754213,83.93527392123202,83.93527392133203,84.07721378689645,84.07721378699645,84.21794529908831,84.21794529918832,84.3560309338489,84.3560309339489,84.4931373856231,84.4931373857231,84.62928548809147,84.62928548819147,84.76418356972616,84.76418356982616,84.89847747462457,84.89847747472457,85.03191719861998,85.03191719871998,85.16483608060135,85.16483608070135,85.29712995216588,85.29712995226588,85.4290488174803,85.4290488175803,85.55980099668328,85.55980099678328,85.69038650644177,85.69038650654177,85.81880531342189,85.81880531352189,85.94561992699879,85.94561992709879,86.07189286488108,86.07189286498108,86.19779079651327,86.19779079661328,86.32187619793663,86.32187619803663,86.44408656810947,86.44408656820947,86.56563026050434,86.56563026060434,86.68615310255171,86.68615310265172,86.80605093418224,86.80605093428224,86.92521958699312,86.92521958709312,87.04413823563726,87.04413823573726,87.16153602560043,87.16153602570043,87.27712128535475,87.27712128545475,87.38906065101085,87.38906065111085,87.50014583576393,87.50014583586393,87.6095643260721,87.6095643261721,87.7182119701995,87.7182119702995,87.82673461224354,87.82673461234354,87.93436140602343,87.93436140612343,88.04132152202537,88.04132152212537,88.14648994149903,88.14648994159903,88.25163752729212,88.25163752739212,88.35659760996016,88.35659761006016,88.46114101901698,88.46114101911698,88.56243437390623,88.56243437400623,88.66301938365639,88.66301938375639,88.76229187153119,88.76229187163119,88.86125185419758,88.86125185429758,88.9601285021417,88.9601285022417,89.0589634827247,89.05896348282471,89.15719428657144,89.15719428667144,89.25488341472358,89.25488341482358,89.35240587343122,89.35240587353123,89.44780329672162,89.44780329682162,89.54109651827531,89.54109651837531,89.63413973566226,89.63413973576226,89.72707878464641,89.72707878474641,89.81928865481092,89.81928865491092,89.91141519025317,89.91141519035317,90.00341672361206,90.00341672371206,90.09373072884549,90.09373072894549,90.18362806046767,90.18362806056767,90.27169202820048,90.27169202830048,90.35861014350239,90.35861014360239,90.44419490324839,90.44419490334839,90.52794629910498,90.52794629920498,90.61121852030867,90.61121852040867,90.69426157102619,90.69426157112619,90.77651294188236,90.77651294198236,90.85668094468241,90.85668094478241,90.93680728012133,90.93680728022133,91.01489191486525,91.01489191496525,91.0925807096785,91.0925807097785,91.16999866664445,91.16999866674445,91.24727078784646,91.24727078794646,91.3226470441174,91.3226470442174,91.39796079934665,91.39796079944665,91.47264954415907,91.47264954425907,91.62071451190853,91.62071451200853,91.69269487824798,91.69269487834798,91.76452940882348,91.76452940892348,91.83623893731563,91.83623893741563,91.90780263004383,91.90780263014383,91.97561626027101,91.97561626037101,92.04336738945649,92.0433673895565,92.11084768079468,92.11084768089468,92.17791129852164,92.17791129862164,92.24453740895682,92.24453740905682,92.31064267737796,92.31064267747796,92.37608126802114,92.37608126812114,92.4407698461641,92.4407698462641,92.50500008333472,92.50500008343472,92.56883448057468,92.56883448067468,92.631606360106,92.631606360206,92.69371156185936,92.69371156195936,92.75548342472375,92.75548342482375,92.81719278654644,92.81719278664644,92.87771462857714,92.87771462867714,92.93819480324672,92.93819480334672,92.99790413173552,92.99790413183553,93.0575301255021,93.0575301256021,93.1168644477408,93.1168644478408,93.17586543109051,93.17586543119052,93.234449740829,93.23444974092901,93.29251320855347,93.29251320865347,93.35018083634728,93.35018083644728,93.40672344539075,93.40672344549075,93.46324522075368,93.46324522085368,93.51916281938033,93.51916281948033,93.57497624960416,93.57497624970416,93.63072717878632,93.63072717888632,93.68639477324622,93.68639477334622,93.74204153402556,93.74204153412556,93.79754245904098,93.79754245914098,93.85196003266721,93.85196003276721,93.90598176636277,93.90598176646277,93.95971182853047,93.95971182863047,94.01319188653144,94.01319188663145,94.06660944349072,94.06660944359072,94.1195478257971,94.1195478258971,94.17113201886698,94.17113201896699,94.22265371089519,94.22265371099519,94.27352955882598,94.27352955892599,94.32203036717279,94.32203036727279,94.36953115885265,94.36953115895265,94.41663611060184,94.41663611070184,94.46336605610094,94.46336605620094,94.50934598909981,94.50934598919982,94.55524258737645,94.55524258747646,94.6008683478058,94.6008683479058,94.64645244087401,94.64645244097402,94.69130735512259,94.69130735522259,94.73566226103769,94.73566226113769,94.77924632077202,94.77924632087202,94.82028867147785,94.82028867157786,94.85785179752996,94.85785179762996,94.89470657844298,94.89470657854298,94.93124885414757,94.93124885424757,94.9672911215187,94.9672911216187,95.00235420590343,95.00235420600343,95.03681311355189,95.03681311365189,95.07085534758913,95.07085534768913,95.10464757745963,95.10464757755963,95.13825230420507,95.13825230430507,95.17133618893648,95.17133618903648,95.20325338755646,95.20325338765646,95.23417056950949,95.23417056960949,95.26502525042083,95.26502525052084,95.29521325355422,95.29521325365423,95.3245470757846,95.3245470758846,95.3536517275288,95.3536517276288,95.38198553309222,95.38198553319222,95.41029850497509,95.41029850507509,95.46682028033801,95.46682028043801,95.4943624060401,95.4943624061401,95.52165452757546,95.52165452767547,95.54713411890198,95.54713411900198,95.57259287654794,95.57259287664795,95.59700995016584,95.59700995026584,95.62109368489475,95.62109368499475,95.64340655677594,95.64340655687595,95.66528192136536,95.66528192146536,95.68696978282972,95.68696978292972,95.70805346755779,95.70805346765779,95.72299121652027,95.72299121662027],[0.0,1e-10,0.652323372056201,0.652323372156201,1.2377706295104918,1.2377706296104918,1.809613493558226,1.809613493658226,2.3730812180203005,2.3730812181203005,2.916694444907415,2.916694445007415,3.423161219353656,3.423161219453656,3.9293571559525993,3.9293571560525993,4.433948899148319,4.433948899248319,4.928644644077401,4.9286446441774014,5.4219861997699965,5.4219861998699965,5.893681561359356,5.893681561459356,6.355147585793096,6.355147585893096,6.812030200503342,6.812030200603342,7.257287621460358,7.257287621560358,7.681148852480875,7.681148852580875,8.100780846347439,8.100780846447439,8.520183669727828,8.520183669827828,8.935253087551459,8.935253087651459,9.348676644610743,9.348676644710743,9.760516841947366,9.760516842047366,10.172211203520058,10.172211203620058,10.574238737312289,10.574238737412289,10.976224603743395,10.976224603843395,11.377939632327205,11.377939632427205,11.774237903965066,11.774237904065066,12.164931915531925,12.164931915631925,12.55539675661261,12.55539675671261,12.927402956715945,12.927402956815945,13.293679894664912,13.293679894764912,13.658894314905249,13.658894315005249,14.023129552159203,14.023129552259203,14.386364772746212,14.386364772846212,14.747599959999333,14.747599960099333,15.107897631627194,15.107897631727194,15.465153585893098,15.465153585993098,15.81213853564226,15.81213853574226,16.158415140252337,16.158415140352336,16.50369172819547,16.50369172829547,16.842614043567394,16.842614043667393,17.177848797479957,17.177848797579955,17.50687511458524,17.50687511468524,17.834901415023584,17.834901415123582,18.159781829697163,18.15978182979716,18.483766396106603,18.4837663962066,18.806750945849096,18.806750945949094,19.127068784479743,19.12706878457974,19.443865731095517,19.443865731195515,19.759704328405473,19.75970432850547,20.075355422590377,20.075355422690375,20.384402240037335,20.384402240137334,20.69265737762296,20.69265737772296,20.997891631527192,20.99789163162719,21.30245920765346,21.302459207753458,21.606360106001766,21.606360106101764,21.909823497058284,21.909823497158282,22.208432640544007,22.208432640644006,22.503916731945534,22.503916732045532,22.798900815013585,22.798900815113583,23.092676544609077,23.092676544709075,23.38478557975966,23.38478557985966,23.676040434007234,23.676040434107232,23.965774429573827,23.965774429673825,24.25473757895965,24.254737579059647,24.54120068667811,24.541200686778108,24.825726262104368,24.825726262204366,25.110210170169502,25.1102101702695,25.39008983483058,25.390089834930578,25.668781979699663,25.66878197979966,25.94403656727612,25.94403656737612,26.219186986449774,26.219186986549772,26.49387906465108,26.493879064751077,26.766737778962984,26.766737779062982,27.038554809246822,27.03855480934682,27.309559325988765,27.309559326088763,27.57868881148019,27.57868881158019,27.846839113985233,27.84683911408523,28.114510241837365,28.114510241937364,28.380806346772445,28.380806346872443,28.64418573642894,28.64418573652894,28.90748179136319,28.907481791463187,29.166048600810015,29.166048600910013,29.422865381089686,29.422865381189684,29.677057117618627,29.677057117718626,29.930207170119502,29.9302071702195,30.183190553175887,30.183190553275885,30.435361422690377,30.435361422790375,30.686553109218487,30.686553109318485,30.93764062734379,30.937640627443788,31.185832263871063,31.18583226397106,31.433919731995534,31.433919732095532,31.680840514008565,31.680840514108564,31.927094618243636,31.927094618343634,32.173202886714776,32.17320288681478,32.41862364372739,32.418623643827395,32.66339855664261,32.663398556742614,32.90731928865481,32.90731928875481,33.15088584809747,33.15088584819747,33.393014883581394,33.393014883681396,33.63287304788413,33.632873047984134,33.87085618093635,33.87085618103635,34.108172636210604,34.108172636310606,34.34321822030367,34.34321822040367,34.57778462974383,34.57778462984383,34.812226037100615,34.81222603720062,35.0431673861231,35.043167386223104,35.26825447090785,35.26825447100785,35.49277904631744,35.49277904641744,35.716761946032435,35.716761946132436,35.94024483741396,35.94024483751396,36.16358189303155,36.16358189313155,36.38623143719062,36.38623143729062,36.60763096051601,36.607630960616014,36.82798879981333,36.827988799913335,37.045304921748695,37.0453049218487,37.261912698544975,37.26191269864498,37.477437123952065,37.47743712405207,37.69204486741446,37.69204486751446,37.905881764696076,37.90588176479608,38.119676994616576,38.11967699471658,38.332930548842484,38.332930548942485,38.542975716261935,38.54297571636194,38.751458357639294,38.751458357739295,38.9581909698495,38.9581909699495,39.16415273587893,39.16415273597893,39.36878114635244,39.36878114645244,39.57132618876981,39.57132618886981,39.772933715561926,39.77293371566193,39.973749562492706,39.97374956259271,40.17452374206237,40.17452374216237,40.37446457440957,40.374464574509574,40.57425957099285,40.57425957109285,40.7733670561176,40.7733670562176,40.97243287388123,40.972432873981234,41.170936182269706,41.17093618236971,41.3688353139219,41.3688353140219,41.566484441407354,41.566484441507356,41.76205020083668,41.762050200936685,41.95380339672328,41.95380339682328,42.14509825163753,42.14509825173753,42.336309771829534,42.336309771929535,42.52487541459024,42.52487541469024,42.70933682228037,42.70933682238037,42.893131552192536,42.89313155229254,43.07686378106302,43.07686378116302,43.259783496391606,43.25978349649161,43.44201570026167,43.44201570036167,43.62360206003434,43.62360206013434,43.804417573626225,43.80441757372623,43.98508725145419,43.98508725155419,44.16565276087935,44.16565276097935,44.34571826197103,44.34571826207103,44.705453424223734,44.705453424323736,44.88437307288455,44.88437307298455,45.06318855314255,45.063188553242554,45.24196236603943,45.24196236613943,45.41884031400523,45.41884031410523,45.59505158419307,45.595051584293074,45.77076284604743,45.770762846147434,45.946453274221234,45.946453274321236,46.12106035100585,46.121060351105854,46.294334072234534,46.294334072334536,46.46564942749046,46.46564942759046,46.63621477024617,46.63621477034617,46.80675927932132,46.80675927942132,46.97676211270188,46.97676211280188,47.146744112401876,47.14674411250188,47.315559425990436,47.31555942609044,47.48341639027317,47.48341639037317,47.65104418406973,47.651044184169734,47.81863031050518,47.81863031060518,47.98582059700995,47.98582059710995,48.15149002483375,48.15149002493375,48.3167011116852,48.3167011117852,48.48184969749496,48.48184969759496,48.64649827497125,48.64649827507125,48.81066767779463,48.810667677894635,48.97481624693745,48.97481624703745,49.138902315038585,49.13890231513859,49.30288421473691,49.302884214836915,49.46682444707412,49.46682444717412,49.6306188436474,49.6306188437474,49.794225737095616,49.79422573719562,49.95762429373823,49.95762429383823,50.120981183019715,50.12098118311972,50.28421307021784,50.28421307031784,50.44738245637427,50.44738245647427,50.60996849947499,50.60996849957499,50.77157535958933,50.77157535968933,50.932911381856364,50.932911381956366,51.09408073467891,51.09408073477891,51.25447924132069,51.25447924142069,51.41450274171236,51.41450274181236,51.573734562242706,51.57373456234271,51.73225803763396,51.73225803773396,51.89030233837231,51.89030233847231,52.047804963416056,52.04780496351606,52.205140919015314,52.205140919115316,52.36239353989233,52.36239353999233,52.51847947465791,52.51847947475791,52.67454457574293,52.67454457584293,52.83044300738346,52.83044300748346,52.98582059700995,52.98582059710995,53.14101068351139,53.14101068361139,53.295534092234874,53.295534092334876,53.44939082318039,53.44939082328039,53.602955882598046,53.60295588269805,53.75641677361289,53.75641677371289,53.9095234920582,53.9095234921582,54.062401040017335,54.06240104011734,54.21517441957366,54.21517441967366,54.367614460241,54.367614460341,54.519887831463855,54.51988783156386,54.67159869331155,54.67159869341155,54.823163719395325,54.82316371949533,54.97470791179853,54.974707911898534,55.12518958649311,55.12518958659311,55.2749629160486,55.2749629161486,55.424194569909496,55.4241945700095,55.57280121335356,55.57280121345356,55.72128285471425,55.72128285481425,55.86938948982483,55.869389489924835,56.016204436740615,56.01620443684062,56.16260271004517,56.16260271014517,56.30845930765513,56.30845930775513,56.59950582509708,56.599505825197085,56.744612410206834,56.744612410306836,56.88828147135786,56.88828147145786,57.03103385056418,57.03103385066418,57.17332788879815,57.17332788889815,57.314621910365176,57.31462191046518,57.45570759512658,57.455707595226585,57.59654327572126,57.59654327582126,57.73721228687145,57.73721228697145,57.87700628343806,57.87700628353806,58.01621693694895,58.01621693704895,58.15526092101535,58.15526092111535,58.2941174019567,58.2941174020567,58.43284888081468,58.43284888091468,58.709749329155485,58.70974932925549,58.84723078717979,58.84723078727979,58.98423307055118,58.98423307065118,59.12115201920032,59.121152019300325,59.25802930048834,59.25802930058834,59.39428157135952,59.39428157145952,59.53032550542509,59.53032550552509,59.66574442907382,59.66574442917382,59.93641560692678,59.93641560702678,60.07120952015867,60.07120952025867,60.20587843130719,60.20587843140719,60.34042234037234,60.340422340472344,60.47492458207637,60.47492458217637,60.609280988016465,60.60928098811647,60.74301238353973,60.74301238363973,60.87659794329905,60.876597943399055,61.00976682944716,61.00976682954716,61.14185236420607,61.141852364306075,61.273667061117685,61.27366706121769,61.4053775896265,61.4053775897265,61.53679644660745,61.53679644670745,61.66815280254671,61.66815280264671,61.799342489041486,61.79934248914149,61.93005300088335,61.93005300098335,62.06034683911398,62.060346839213985,62.19043234053901,62.19043234063901,62.450520008666814,62.450520008766816,62.579834663911065,62.57983466401107,62.708607643460724,62.708607643560725,62.83644310738512,62.836443107485124,62.963861897698294,62.963861897798296,63.09032233870565,63.09032233880565,63.21674111235187,63.21674111245187,63.3428890481508,63.342889048250804,63.46874531242187,63.468745312521875,63.594434907248456,63.59443490734846,63.719686994783245,63.71968699488325,63.84358489308155,63.84358489318155,63.96731612193537,63.96731612203537,64.09065151085852,64.09065151095852,64.21394523242054,64.21394523252054,64.33673894564909,64.33673894574909,64.45947015783597,64.45947015793597,64.58199303321722,64.58199303331722,64.70449507491792,64.70449507501792,64.826788779813,64.826788779913,64.9487491458191,64.9487491459191,65.07066784446407,65.07066784456407,65.192399039984,65.192399040084,65.31381773029551,65.31381773039551,65.43494474907915,65.43494474917915,65.55588426473774,65.55588426483774,65.67669877831297,65.67669877841297,65.79738828980483,65.79738828990483,65.918015300255,65.91801530035501,66.03855897598294,66.03855897608294,66.15904015066918,66.15904015076919,66.27939632327205,66.27939632337205,66.39866914448574,66.39866914458574,66.51758779312989,66.5175877932299,66.63554809246821,66.63554809256821,66.75315421923699,66.75315421933699,66.87032283871397,66.87032283881398,66.98742895714929,66.98742895724929,67.10259754329239,67.10259754339239,67.217599459991,67.21759946009101,67.33247637460624,67.33247637470625,67.44620743679062,67.44620743689062,67.55989683161386,67.55989683171386,67.67339872331206,67.67339872341206,67.78629643827396,67.78629643837397,67.89898581643027,67.89898581653027,68.01163352722546,68.01163352732546,68.12423957065951,68.12423957075951,68.23659560992684,68.23659561002684,68.3489308155136,68.3489308156136,68.46093268221136,68.46093268231137,68.57291371522858,68.57291371532858,68.6846239103985,68.6846239104985,68.79568826147103,68.79568826157103,68.90662761046018,68.90662761056018,69.01740029000483,69.01740029010483,69.12758962649377,69.12758962659377,69.23775812930215,69.23775812940215,69.34755162586043,69.34755162596043,69.45694928248804,69.45694928258804,69.56613860231003,69.56613860241004,69.67482791379857,69.67482791389857,69.78220470341172,69.78220470351172,69.88953982566376,69.88953982576376,69.99677077951299,69.99677077961299,70.21044100735013,70.21044100745013,70.31648444140735,70.31648444150736,70.42240287338122,70.42240287348122,70.52811296854948,70.52811296864948,70.6336772279538,70.6336772280538,70.73894981583027,70.73894981593027,70.84328488808147,70.84328488818147,70.94751579192986,70.94751579202986,71.05160086001433,71.05160086011433,71.1552067534459,71.1552067535459,71.3622102035034,71.3622102036034,71.4651910865181,71.4651910866181,71.56804696744946,71.56804696754946,71.670798679978,71.67079868007801,71.77348789146485,71.77348789156486,71.87592709878498,71.87592709888499,71.97807463457724,71.97807463467724,72.07976382939715,72.07976382949715,72.1807863464391,72.18078634653911,72.28172552875881,72.28172552885881,72.3826230437174,72.3826230438174,72.48316638610643,72.48316638620643,72.58287638127302,72.58287638137303,72.68252387539792,72.68252387549792,72.78200470007833,72.78200470017833,72.88131885531425,72.88131885541425,72.98044550742513,72.98044550752513,73.0786554775913,73.0786554776913,73.17680294671578,73.17680294681578,73.2745545759096,73.2745545760096,73.37197286621443,73.37197286631444,73.4691619860331,73.4691619861331,73.56628860481008,73.56628860491008,73.66320688678145,73.66320688688145,73.76010433507226,73.76010433517226,73.8561684361406,73.85616843624061,73.95169086151436,73.95169086161437,74.04692161536026,74.04692161546026,74.14211070184503,74.14211070194503,74.23663311055184,74.23663311065184,74.33084301405023,74.33084301415023,74.4246362439374,74.4246362440374,74.6121810363506,74.61218103645061,74.7056409273488,74.7056409274488,74.79862164369406,74.79862164379406,74.89141485691428,74.89141485701428,74.98381223020384,74.98381223030384,75.16829447157453,75.16829447167453,75.26017100285004,75.26017100295005,75.35194336572276,75.35194336582276,75.44363239387323,75.44363239397323,75.53492558209304,75.53492558219304,75.62607293454892,75.62607293464892,75.71686611443523,75.71686611453524,75.80747179119652,75.80747179129652,75.89768162802713,75.89768162812713,75.98784979749662,75.98784979759662,76.16804030067168,76.16804030077168,76.2573334555576,76.2573334556576,76.3465224420407,76.3465224421407,76.43569059484325,76.43569059494325,76.52483791396523,76.52483791406523,76.61392273204554,76.61392273214554,76.70279921332022,76.70279921342022,76.7915715261921,76.7915715262921,76.88030217170287,76.88030217180287,76.96890781513025,76.96890781523025,77.05730512175202,77.05730512185202,77.145598259971,77.145598260071,77.2330163836064,77.2330163837064,77.32024700411674,77.32024700421674,77.40729012150203,77.40729012160203,77.4938540642344,77.4938540643344,77.58031383856398,77.58031383866398,77.66644027400457,77.66644027410457,77.75235837263955,77.75235837273955,77.83798479974666,77.83798479984667,77.92350705845098,77.92350705855098,78.0942807380123,78.0942807381123,78.17940715678594,78.17940715688594,78.26401273354556,78.26401273364556,78.34845164086069,78.34845164096069,78.51687111451858,78.51687111461858,78.60066417773629,78.6006641778363,78.68429057150952,78.68429057160952,78.76779196319939,78.76779196329939,78.85125168752812,78.85125168762812,78.93462807713462,78.93462807723462,79.01783779729662,79.01783779739662,79.10102668377806,79.10102668387806,79.18409056817613,79.18409056827613,79.26675861264354,79.26675861274354,79.34917665294421,79.34917665304421,79.43146969116152,79.43146969126153,79.51374189569826,79.51374189579826,79.59599326655444,79.59599326665445,79.67795296588277,79.67795296598277,79.75953765896098,79.75953765906098,79.8404765079418,79.8404765080418,79.92089451490858,79.92089451500858,80.00047917465291,80.00047917475291,80.07954299238321,80.07954299248321,80.15841930698845,80.15841930708845,80.236378939649,80.236378939749,80.31423440390674,80.31423440400674,80.3919648660811,80.3919648661811,80.54709245154086,80.54709245164086,80.6241354022567,80.6241354023567,80.77801296688278,80.77801296698279,80.85455590926516,80.85455590936516,80.93101551692529,80.93101551702529,81.00745429090485,81.00745429100485,81.08374722912049,81.08374722922049,81.15976932948882,81.15976932958883,81.23535392256538,81.23535392266538,81.30995933265554,81.30995933275554,81.38423140385673,81.38423140395673,81.45846180769679,81.4584618077968,81.53190053167553,81.53190053177553,81.60517258620978,81.60517258630978,81.67777796296605,81.67777796306605,81.75013333555559,81.75013333565559,81.82242620710345,81.82242620720345,81.89434407240121,81.89434407250121,81.96619943665728,81.96619943675728,82.03740895681595,82.03740895691595,82.10820180336339,82.10820180346339,82.17876547942465,82.17876547952466,82.2492874881248,82.24928748822481,82.3197261621027,82.3197261622027,82.46039517325289,82.4603951733529,82.530396339939,82.530396340039,82.67014866914448,82.67014866924448,82.80958849314155,82.80958849324155,82.87913131885531,82.87913131895532,82.94771579526325,82.94771579536325,83.01627943799063,83.01627943809063,83.08471807863464,83.08471807873464,83.15271921198686,83.15271921208686,83.22067867797797,83.22067867807797,83.28853397556625,83.28853397566625,83.35613926898782,83.35613926908782,83.42353622560375,83.42353622570376,83.49070401173353,83.49070401183353,83.55772596209937,83.55772596219937,83.6246437440624,83.6246437441624,83.69151985866431,83.69151985876431,83.75814596909949,83.75814596919949,83.82473041217354,83.82473041227354,83.89114818580309,83.89114818590309,83.95712845214086,83.95712845224087,84.02225453757562,84.02225453767562,84.08729728828814,84.08729728838814,84.21702861714363,84.21702861724363,84.28157135952266,84.28157135962266,84.34596826613777,84.34596826623778,84.4101985033084,84.4101985034084,84.47434540575676,84.47434540585677,84.5383464724412,84.5383464725412,84.60222253704228,84.60222253714228,84.66605693428224,84.66605693438224,84.72949549159152,84.72949549169152,84.79278821313689,84.79278821323689,84.85585176419607,84.85585176429608,84.91874864581077,84.91874864591077,84.98114551909198,84.98114551919198,85.04322988716478,85.04322988726479,85.10523092051534,85.10523092061534,85.16714861914365,85.16714861924365,85.2289413156886,85.2289413157886,85.29040067334455,85.29040067344455,85.3518183636394,85.3518183637394,85.4129860497675,85.4129860498675,85.47392456540942,85.47392456550942,85.53452974216236,85.53452974226236,85.59467657794296,85.59467657804296,85.65471924532075,85.65471924542075,85.71455357589294,85.71455357599294,85.77422123702061,85.77422123712061,85.83359722662044,85.83359722672044,85.95205753429224,85.95205753439224,86.01091268187803,86.01091268197803,86.06941365689428,86.06941365699429,86.12783129718828,86.12783129728828,86.18620727012117,86.18620727022117,86.24333322222037,86.24333322232037,86.30029250487509,86.30029250497509,86.35646010766847,86.35646010776847,86.41235687261454,86.41235687271454,86.46823280388007,86.46823280398007,86.52348372472875,86.52348372482875,86.57860964349406,86.57860964359406,86.6335063917732,86.6335063918732,86.68838230637178,86.68838230647178,86.74277904631744,86.74277904641744,86.79684244737412,86.79684244747412,86.85088501475025,86.85088501485025,86.90467757795963,86.90467757805963,86.95822013700229,86.95822013710229,87.01174186236437,87.01174186246438,87.06478441307355,87.06478441317356,87.1177852964216,87.1177852965216,87.17074451240855,87.17074451250855,87.22324538742312,87.22324538752312,87.27566292771546,87.27566292781546,87.3278096301605,87.3278096302605,87.37993549892498,87.37993549902498,87.43191553192553,87.43191553202553,87.48360389339823,87.48360389349823,87.53512558542643,87.53512558552643,87.58610560176002,87.58610560186003,87.63652310871848,87.63652310881848,87.6868989483158,87.6868989484158,87.73667061117685,87.73667061127685,87.78585893098219,87.78585893108219,87.8350055834264,87.8350055835264,87.88400640010667,87.88400640020667,87.9329238820647,87.9329238821647,87.98173719561993,87.98173719571993,88.03052967549459,88.0305296755946,88.07907215120252,88.07907215130253,88.12707295121585,88.12707295131585,88.17451124185403,88.17451124195404,88.26930448840814,88.26930448850814,88.31647194119903,88.31647194129903,88.3635352255871,88.3635352256871,88.41055684261404,88.41055684271404,88.45747429123819,88.45747429133819,88.50391256520942,88.50391256530942,88.54982999716663,88.54982999726663,88.59566409440157,88.59566409450157,88.64097734962249,88.64097734972249,88.68614476907949,88.68614476917949,88.73095801596693,88.73095801606694,88.77572959549326,88.77572959559326,88.82048034133902,88.82048034143902,88.86508525142085,88.86508525152085,88.90964849414156,88.90964849424157,88.95410756845948,88.95410756855948,88.9985041417357,88.9985041418357,89.04277571292855,89.04277571302855,89.08698478307971,89.08698478317972,89.13098551642527,89.13098551652527,89.17481958032634,89.17481958042634,89.21815363589393,89.21815363599393,89.26140435673928,89.26140435683928,89.30438423973733,89.30438423983733,89.34698911648528,89.34698911658528,89.38919815330256,89.38919815340256,89.47347039117318,89.47347039127318,89.51536692278205,89.51536692288205,89.55709678494641,89.55709678504641,89.6821405356756,89.6821405357756,89.72337038950648,89.72337038960649,89.76439190653177,89.76439190663177,89.80530925515426,89.80530925525426,89.84612243537393,89.84612243547393,89.9276237937299,89.9276237938299,89.96824947082452,89.96824947092452,90.0087293121552,90.0087293122552,90.04868831147186,90.04868831157187,90.08848064134402,90.08848064144402,90.1280021333689,90.1280021334689,90.16721112018534,90.16721112028534,90.20631593859898,90.20631593869898,90.2453790896515,90.2453790897515,90.2842339038984,90.2842339039984,90.32296371606193,90.32296371616194,90.36163102718379,90.36163102728379,90.40019416990283,90.40019417000283,90.43867397789963,90.43867397799963,90.47702878381307,90.47702878391307,90.51532108868481,90.51532108878482,90.5534883914732,90.5534883915732,90.59094734912249,90.59094734922249,90.66580276337939,90.66580276347939,90.70311588526475,90.70311588536475,90.74032483874731,90.74032483884731,90.77751295854931,90.77751295864931,90.85184753079218,90.85184753089219,90.8889106485108,90.8889106486108,91.00005833430558,91.00005833440558,91.03699644994083,91.03699645004083,91.07368456140935,91.07368456150935,91.11020600343339,91.11020600353339,91.1466857780963,91.1466857781963,91.18291554859248,91.18291554869248,91.25508341805697,91.25508341815697,91.29100068334472,91.29100068344472,91.3267929465491,91.3267929466491,91.36233520558676,91.36233520568676,91.3977732962216,91.3977732963216,91.43298221637028,91.43298221647028,91.46781613026884,91.46781613036885,91.50250420840348,91.50250420850348,91.53712978549642,91.53712978559642,91.57171369522825,91.57171369532826,91.64075651260855,91.64075651270855,91.67517375289589,91.67517375299589,91.70940349005816,91.70940349015817,91.74354989249821,91.74354989259821,91.77748795813264,91.77748795823264,91.8114051900865,91.8114051901865,91.84523908731812,91.84523908741812,91.87903131718862,91.87903131728862,91.91280271337855,91.91280271347856,91.946407440124,91.94640744022401,91.97990799846664,91.97990799856665,92.01336688944816,92.01336688954817,92.04657577626294,92.04657577636294,92.0794721578693,92.0794721579693,92.11222270371172,92.11222270381172,92.14484824747079,92.14484824757079,92.17745295754929,92.1774529576493,92.20991183186386,92.20991183196386,92.24224570409507,92.24224570419507,92.27414206903448,92.27414206913448,92.3054967582793,92.3054967583793,92.3367056117602,92.3367056118602,92.3676852947549,92.36768529485491,92.3985191419857,92.3985191420857,92.42908215136919,92.42908215146919,92.45954099234987,92.45954099244987,92.48987483124719,92.4898748313472,92.52016700278338,92.52016700288338,92.550438340639,92.550438340739,92.58056384273071,92.58056384283071,92.61064767746129,92.61064767756129,92.6405023417057,92.6405023418057,92.67031533858898,92.67031533868898,92.70006583443057,92.70006583453058,92.72950382506374,92.72950382516375,92.75885848097468,92.75885848107468,92.78815063584393,92.78815063594394,92.81740112335206,92.81740112345206,92.84654744245738,92.84654744255738,92.87567292788214,92.87567292798214,92.90477757962633,92.90477757972633,92.93373639560659,92.93373639570659,92.96254937582293,92.96254937592293,92.99129985499758,92.99129985509758,93.01998783313056,93.01998783323056,93.04852997549959,93.04852997559959,93.10557259287654,93.10557259297654,93.13403140052334,93.13403140062334,93.16244854080901,93.16244854090901,93.19057400956683,93.19057400966683,93.21853280888014,93.21853280898014,93.24590826513776,93.24590826523776,93.27309621827031,93.27309621837031,93.3000966682778,93.3000966683778,93.32707628460474,93.32707628470475,93.35388923148719,93.35388923158719,93.38055634260571,93.38055634270572,93.40684844747412,93.40684844757412,93.43307805130085,93.43307805140086,93.45905765096084,93.45905765106085,93.48499558325972,93.48499558335972,93.5105585093085,93.5105585094085,93.53607976799613,93.53607976809613,93.56139268987816,93.56139268997816,93.58668477807963,93.58668477817963,93.61195603260055,93.61195603270055,93.63712311871865,93.63712311881865,93.66226937115619,93.66226937125619,93.68720728678811,93.68720728688811,93.71204103401723,93.71204103411723,93.73685394756579,93.7368539476658,93.76139602326705,93.76139602336706,93.78575059584327,93.78575059594327,93.81002183369723,93.81002183379724,93.83410556842614,93.83410556852614,93.85816846947449,93.8581684695745,93.8821480358006,93.8821480359006,93.93008633477224,93.93008633487224,93.95369089484825,93.95369089494825,93.9772746212437,93.9772746213437,94.00083751395857,94.00083751405857,94.02435873931232,94.02435873941232,94.07113035217253,94.07113035227253,94.09435990599843,94.09435990609843,94.11754779246321,94.11754779256322,94.14031900531675,94.14031900541676,94.1629860497675,94.1629860498675,94.18542392373206,94.18542392383206,94.2078201303355,94.20782013043551,94.23015383589727,94.23015383599727,94.25225837097285,94.25225837107286,94.27421707028451,94.27421707038451,94.29602993383223,94.29602993393223,94.31773862897715,94.31773862907716,94.33938482308038,94.33938482318038,94.36080184669744,94.36080184679744,94.38198969982832,94.38198969992833,94.40313588559809,94.40313588569809,94.42409456824281,94.42409456834281,94.44490741512358,94.44490741522358,94.46565776096269,94.46565776106269,94.48626227103784,94.48626227113785,94.50674177902965,94.50674177912965,94.52715878597976,94.52715878607977,94.588368139469,94.588368139569,94.60849347489125,94.60849347499125,94.62847297454958,94.62847297464958,94.64801496691612,94.64801496701612,94.66743195719928,94.66743195729929,94.6868281138019,94.6868281139019,94.70618260304339,94.70618260314339,94.72520375339589,94.72520375349589,94.74414156902616,94.74414156912616,94.76274604576743,94.76274604586743,94.78132968882815,94.78132968892815,94.79964249404156,94.79964249414157,94.81783029717162,94.81783029727163,94.83549725828763,94.83549725838763,94.85299754995917,94.85299755005917,94.87047700795013,94.87047700805013,94.88758145969099,94.887581459791,94.90466507775129,94.90466507785129,94.93858230970517,94.93858230980517,94.95531175519592,94.95531175529592,94.97156202603377,94.97156202613377,94.98762479374656,94.98762479384656,95.00327088784813,95.00327088794813,95.0187503125052,95.0187503126052,95.03412556875948,95.03412556885948,95.04945915765263,95.04945915775264,95.06475107918466,95.06475107928466,95.07985549759162,95.07985549769163,95.09485574759579,95.09485574769579,95.10971016183603,95.10971016193604,95.12421040350672,95.12421040360672,95.1386689778163,95.1386689779163,95.1531067184453,95.1531067185453,95.16744029067151,95.16744029077151,95.19608660144335,95.19608660154336,95.21033683894731,95.21033683904732,95.2244620743679,95.22446207446791,95.23850397506625,95.23850397516625,95.25242087368123,95.25242087378123,95.26631693861565,95.26631693871565,95.27962966049434,95.27962966059434,95.29290071501191,95.29290071511191,95.30615093584893,95.30615093594893,95.31900531675528,95.31900531685528,95.33175552925881,95.33175552935882,95.34442240704011,95.34442240714012,95.35694344905748,95.35694344915748,95.36933948899149,95.36933948909149,95.38125635427257,95.38125635437257,95.3931523858731,95.3931523859731,95.4050067501125,95.40500675021251,95.41681944699079,95.41681944709079,95.42854880914682,95.42854880924682,95.44013233553892,95.44013233563892,95.45159085984767,95.45159085994767,95.46302855047584,95.46302855057584,95.47440374006233,95.47440374016233,95.49709161819364,95.49709161829364,95.50815430257171,95.50815430267171,95.51907115118586,95.51907115128586,95.52984216403607,95.52984216413607,95.54059234320572,95.54059234330572,95.551217520292,95.551217520392,95.56182186369773,95.56182186379773,95.57163452724213,95.57163452734213],[0.0,1e-10,2.897714961916032,2.897714962016032,5.75347089118152,5.75347089128152,8.378389639827331,8.378389639927331,10.778992149869165,10.778992149969165,12.948361639360655,12.948361639460655,15.081397189953165,15.081397190053165,17.205599259987668,17.205599260087666,19.198507475124586,19.198507475224584,21.123143719061986,21.123143719161984,22.944632410540176,22.944632410640175,24.72149535825597,24.72149535835597,26.352230870514507,26.352230870614505,27.94113235220587,27.941132352305868,29.515158585976433,29.51515858607643,31.07485124752079,31.07485124762079,32.49710411840197,32.49710411850197,33.824897081618026,33.82489708171803,35.06023017050284,35.06023017060284,36.28029217153619,36.28029217163619,37.48462474374573,37.48462474384573,38.667748629143816,38.66774862924382,39.82526792113202,39.82526792123202,40.94672411206854,40.94672411216854,42.06740945682428,42.06740945692428,43.166386106435105,43.16638610653511,44.23438307305122,44.23438307315122,45.25962932715545,45.25962932725545,46.2758129302155,46.2758129303155,47.22018283638061,47.22018283648061,48.16099018316972,48.160990183269725,49.07821380356339,49.078213803663395,49.99224987083118,49.99224987093118,50.88601476691278,50.88601476701278,51.76788363139386,51.76788363149386,52.6467524458741,52.6467524459741,53.5225170419507,53.5225170420507,54.367801963366055,54.36780196346606,55.19244070734512,55.19244070744512,56.01680861347689,56.01680861357689,56.82155119251988,56.82155119261988,57.566230270504505,57.56623027060451,58.31038850647511,58.31038850657511,59.05331755529259,59.05331755539259,59.785767262787715,59.78576726288772,60.514946082434705,60.514946082534706,61.23077051284188,61.23077051294188,61.9070109501825,61.907010950282505,62.571459524325405,62.57145952442541,63.230783013050214,63.230783013150216,63.878710478507976,63.87871047860798,64.52517958632644,64.52517958642645,65.11879364656077,65.11879364666078,65.67809463491058,65.67809463501058,66.23431223853731,66.23431223863732,66.7743212386873,66.77432123878731,67.31405940099002,67.31405940109002,67.82777629627161,67.82777629637161,68.34009733495559,68.34009733505559,68.84525158752646,68.84525158762646,69.3424473741229,69.3424473742229,69.83312221870365,69.83312221880365,70.31288021467024,70.31288021477025,70.79211736862281,70.79211736872281,71.26206270104501,71.26206270114501,71.72352872547876,71.72352872557876,72.17209870164503,72.17209870174503,72.61735612260205,72.61735612270205,73.06030100501675,73.06030100511676,73.48255804263404,73.48255804273404,73.90214836913948,73.90214836923948,74.31990533175554,74.31990533185554,74.73159969332822,74.73159969342822,75.53625893764897,75.53625893774897,75.91376522942049,75.9137652295205,76.66394439907332,76.66394439917332,77.0255754262571,77.02557542635711,77.38362306038434,77.38362306048434,77.73717061951032,77.73717061961032,78.08855147585793,78.08855147595793,78.43716145269087,78.43716145279087,78.78320888681478,78.78320888691478,79.12746462441041,79.12746462451041,79.45847014116902,79.45847014126902,79.76164186069768,79.76164186079768,80.05510508508475,80.05510508518475,80.3430265504425,80.3430265505425,80.62338538975649,80.6233853898565,80.90364006066768,80.90364006076769,81.18233220553675,81.18233220563675,81.4504825080418,81.4504825081418,81.71677861297688,81.71677861307688,81.98015800263337,81.98015800273338,82.23876647944132,82.23876647954133,82.49658327638794,82.49658327648794,82.75096251604194,82.75096251614194,83.00342505708429,83.00342505718429,83.25572092868215,83.25572092878215,83.50445424090401,83.50445424100401,83.75245837430624,83.75245837440625,83.99623327055451,83.99623327065451,84.23504975082918,84.23504975092918,84.47190786513109,84.47190786523109,84.70589093151553,84.70589093161553,84.93658227637127,84.93658227647127,85.15839847330788,85.15839847340789,85.37661044350739,85.37661044360739,85.59121818696978,85.59121818706979,85.80126335438923,85.80126335448924,86.00564176069601,86.00564176079601,86.20818680311339,86.2081868032134,86.39948165802764,86.39948165812764,86.59073484558076,86.59073484568076,86.78194636577277,86.78194636587277,86.96076184603076,86.96076184613077,87.13953565892764,87.13953565902764,87.31045517425291,87.31045517435291,87.4804371739529,87.4804371740529,87.64846080768012,87.64846080778013,87.81260937682295,87.81260937692295,87.97509125152087,87.97509125162087,88.13455224253738,88.13455224263738,88.29259654327572,88.29259654337572,88.4486824780413,88.44868247814131,88.60387256454274,88.60387256464274,88.75802096701612,88.75802096711612,88.90958599309988,88.90958599319988,89.20700761679362,89.20700761689362,89.34975999599993,89.34975999609993,89.48517891964866,89.48517891974866,89.6204311738529,89.6204311739529,89.75401673361223,89.75401673371223,89.885206420107,89.885206420207,90.01520858680978,90.01520858690978,90.13800230003834,90.13800230013834,90.26052517541959,90.26052517551959,90.38225637093952,90.38225637103952,90.5031958865981,90.50319588669811,90.62401040017333,90.62401040027333,90.74242904048401,90.74242904058401,90.85182669711162,90.85182669721162,90.95468257804296,90.95468257814296,91.05283004716745,91.05283004726745,91.15001916698611,91.15001916708611,91.24693744895748,91.24693744905748,91.34073067884465,91.34073067894465,91.42806546775779,91.42806546785779,91.51369189486492,91.51369189496492,91.5973391223187,91.5973391224187,91.68079884664745,91.68079884674745,91.76173769562826,91.76173769572826,91.83819730328838,91.83819730338838,91.91421940365673,91.91421940375673,91.98465807763463,91.98465807773464,92.05107585126419,92.05107585136419,92.1161186019767,92.1161186020767,92.18051550859181,92.18051550869181,92.24466241104018,92.24466241114018,92.30849680828014,92.30849680838014,92.37206036767279,92.37206036777279,92.43406140102336,92.43406140112336,92.49597909965166,92.49597909975166,92.55766762779379,92.55766762789379,92.61750195836598,92.61750195846598,92.67664877747963,92.67664877757963,92.73550392506542,92.73550392516542,92.7907548459141,92.7907548460141,92.8422765379423,92.8422765380423,92.89269404490075,92.89269404500075,92.94184069734496,92.94184069744496,92.98644560742679,92.98644560752679,93.03084218070302,93.03084218080302,93.0741762362706,93.0741762363706,93.11607276787946,93.11607276797946,93.1576567942799,93.1576567943799,93.19846997449957,93.19846997459958,93.23592893214887,93.23592893224887,93.27286704778413,93.27286704788413,93.30878431307188,93.30878431317188,93.3422432040534,93.3422432041534,93.37307705128418,93.37307705138419,93.40334838913982,93.40334838923982,93.43320305338422,93.43320305348422,93.46195353255888,93.46195353265888,93.4904540075668,93.4904540076668,93.51743362389374,93.51743362399374,93.54410073501225,93.54410073511225,93.57008033467224,93.57008033477224,93.59443490724846,93.59443490734846,93.618393639894,93.618393639994,93.64197736628944,93.64197736638944,93.66554025900432,93.66554025910432,93.68906148435808,93.68906148445808,93.71172852880882,93.71172852890882,93.73416640277338,93.73416640287338,93.75656260937683,93.75656260947683,93.77889631493858,93.77889631503858,93.80100085001416,93.80100085011416,93.82295954932582,93.82295954942582,93.84477241287355,93.84477241297355,93.86648110801846,93.86648110811846,93.8881273021217,93.8881273022217,93.90954432573876,93.90954432583877,93.93073217886965,93.93073217896965,93.95187836463941,93.95187836473941,93.97283704728412,93.97283704738412,93.9936498941649,93.9936498942649,94.014400240004,94.014400240104,94.03500475007917,94.03500475017917,94.05548425807096,94.05548425817096,94.07590126502109,94.07590126512109,94.1371106185103,94.13711061861031,94.15723595393257,94.15723595403257,94.17721545359089,94.17721545369089,94.19675744595743,94.19675744605743,94.2161744362406,94.21617443634061,94.23557059284322,94.23557059294322,94.2549250820847,94.2549250821847,94.27394623243721,94.27394623253721,94.29288404806746,94.29288404816747,94.31148852480875,94.31148852490875,94.33007216786946,94.33007216796946,94.34838497308289,94.34838497318289,94.36657277621293,94.36657277631294,94.38423973732895,94.38423973742896,94.40174002900048,94.40174002910048,94.41921948699145,94.41921948709145,94.43632393873231,94.43632393883232,94.45340755679261,94.45340755689261,94.48732478874648,94.48732478884648,94.50405423423723,94.50405423433723,94.52030450507509,94.52030450517509,94.53636727278788,94.53636727288789,94.55201336688945,94.55201336698946,94.56749279154653,94.56749279164653,94.5828680478008,94.5828680479008,94.59820163669394,94.59820163679395,94.61349355822597,94.61349355832597,94.62859797663295,94.62859797673295,94.64359822663711,94.64359822673711,94.65845264087734,94.65845264097734,94.67295288254805,94.67295288264805,94.68741145685762,94.68741145695762,94.70184919748662,94.70184919758663,94.71618276971283,94.71618276981283,94.74482908048468,94.74482908058468,94.75907931798864,94.75907931808864,94.77320455340923,94.77320455350923,94.78724645410757,94.78724645420758,94.80116335272254,94.80116335282254,94.81505941765695,94.81505941775696,94.82837213953566,94.82837213963566,94.84164319405323,94.84164319415324,94.85489341489024,94.85489341499024,94.8677477957966,94.8677477958966,94.88049800830014,94.88049800840014,94.89316488608144,94.89316488618144,94.9056859280988,94.9056859281988,94.9180819680328,94.9180819681328,94.92999883331389,94.92999883341389,94.94189486491442,94.94189486501442,94.95374922915381,94.95374922925382,94.9655619260321,94.9655619261321,94.97729128818814,94.97729128828814,94.98887481458024,94.98887481468024,95.00033333888898,95.00033333898898,95.01177102951716,95.01177102961717,95.02314621910365,95.02314621920365,95.04583409723496,95.04583409733496,95.05689678161303,95.05689678171304,95.06781363022716,95.06781363032717,95.07858464307739,95.0785846431774,95.08933482224704,95.08933482234704,95.09995999933332,95.09995999943332,95.11056434273904,95.11056434283904,95.12037700628343,95.12037700638344],[0.0,1e-10,4.569242820713678,4.569242820813678,8.9178777979633,8.9178777980633,13.128989649827497,13.128989649927497,16.684423907065117,16.684423907165115,20.11510608510142,20.11510608520142,22.826213770229504,22.826213770329502,25.23248304138402,25.23248304148402,27.454249237487293,27.45424923758729,29.598680811346856,29.598680811446854,31.72713295221587,31.72713295231587,33.70291588193137,33.70291588203137,35.66038600643344,35.66038600653344,37.57775129585493,37.57775129595493,39.384698078301305,39.38469807840131,41.12031033850564,41.12031033860564,42.77542125702095,42.775421257120954,44.16986116435274,44.16986116445274,45.54773829563826,45.54773829573826,46.91996949949166,46.91996949959166,48.24313738562309,48.243137385723095,49.565013583559725,49.56501358365973,50.860306005100085,50.86030600520009,52.11178519641994,52.11178519651994,53.36068101135019,53.36068101145019,54.54017983633061,54.54017983643061,55.68205303421724,55.68205303431724,56.796217436957285,56.79621743705729,57.88263137718962,57.88263137728962,58.96398273304555,58.96398273314555,60.030229670494506,60.03022967059451,61.04026733778896,61.04026733788896,62.042638210636845,62.04263821073685,62.96802863381056,62.96802863391056,63.88452307538459,63.884523075484594,64.77751712528543,64.77751712538543,65.66161519358656,65.66161519368656,66.53640060667678,66.53640060677678,67.4105401756696,67.4105401757696,68.17271954532576,68.17271954542576,68.93435723928732,68.93435723938732,69.67486958115968,69.67486958125968,70.41031933865564,70.41031933875564,71.1182894714912,71.1182894715912,71.82007200120002,71.82007200130002,72.46854114235238,72.46854114245238,73.11634360572677,73.11634360582677,73.74949999166653,73.74949999176653,74.38169802830048,74.38169802840048,74.98499974999584,74.98499975009584,75.5820513675228,75.5820513676228,76.16604026733779,76.1660402674378,76.68181969699495,76.68181969709495,77.1828905481758,77.18289054827581,77.68283638060635,77.68283638070635,78.16074017900299,78.16074017910299,78.6370397839964,78.6370397840964,79.08335972266204,79.08335972276204,79.52809630160503,79.52809630170503,79.94672827880464,79.94672827890464,80.36202686711445,80.36202686721445,80.77120035333922,80.77120035343923,81.17906131768862,81.17906131778862,81.56102601710029,81.56102601720029,81.92034450574177,81.92034450584177,82.27739212320205,82.27739212330205,82.63125218753646,82.63125218763646,82.98448724145402,82.98448724155402,83.33711811863532,83.33711811873532,83.68585309755163,83.68585309765163,84.03342139035651,84.03342139045651,84.37734378906315,84.37734378916315,84.71122435373923,84.71122435383923,85.04485491424857,85.04485491434858,85.3689019816997,85.3689019817997,85.68846980783013,85.68846980793013,86.0001000016667,86.0001000017667,86.30798013300222,86.30798013310222,86.60029750495842,86.60029750505842,86.89119818663644,86.89119818673645,87.17653627560459,87.17653627570459,87.45604093401556,87.45604093411556,87.73019133652228,87.73019133662228,87.996029100485,87.996029100585,88.24957499291655,88.24957499301655,88.50022500375006,88.50022500385006,88.74818746979116,88.74818746989116,88.99398323305388,88.99398323315388,89.23198719978666,89.23198719988666,89.46707445124085,89.46707445134085,89.70032833880565,89.70032833890565,89.93339472324539,89.93339472334539,90.15546092434874,90.15546092444875,90.35765179419657,90.35765179429657,90.54950915848598,90.54950915858598,90.73944982416374,90.73944982426374,90.92807796796613,90.92807796806613,91.1149977499625,91.1149977500625,91.29589659827664,91.29589659837664,91.47127452124202,91.47127452134202,91.64619410323506,91.64619410333506,91.81780113001884,91.81780113011884,91.98797063284388,91.98797063294388,92.15541092351539,92.15541092361539,92.31458024300404,92.31458024310405,92.47291621527026,92.47291621537026,92.6273979566326,92.62739795673261,92.7798171636194,92.7798171637194,92.93219470324506,92.93219470334506,93.08413473557893,93.08413473567893,93.22997049950833,93.22997049960833,93.37532708878481,93.37532708888482,93.51932948882481,93.51932948892481,93.66281104685078,93.66281104695078,93.79933415556926,93.79933415566926,93.92802380039667,93.92802380049667,94.05504675077918,94.05504675087919,94.17986133102218,94.17986133112218,94.29569659494325,94.29569659504325,94.39528158802646,94.39528158812647,94.49059567659461,94.49059567669461,94.5837222287038,94.58372222880381,94.67597376622943,94.67597376632943,94.76701695028251,94.76701695038251,94.85593509891831,94.85593509901831,94.93114468574477,94.93114468584477,95.00297921632027,95.00297921642027,95.07404290071501,95.07404290081502,95.14375239587326,95.14375239597327,95.21185769762829,95.21185769772829,95.27500458340973,95.27500458350973,95.33610976849614,95.33610976859615,95.39629827163786,95.39629827173786,95.45102835047251,95.45102835057251,95.50425840430674,95.50425840440674,95.55563426057101,95.55563426067101,95.60284338072302,95.60284338082302,95.64673994566576,95.64673994576576,95.68799063317722,95.68799063327722,95.7291163186053,95.72911631870531,95.76370022833714,95.76370022843714,95.79682578042967,95.79682578052967,95.82618043634061,95.82618043644061,95.85520175336255,95.85520175346255,95.88376472941216,95.88376472951217,95.91093184886415,95.91093184896415,95.93514058567642,95.93514058577642,95.95914098568309,95.9591409857831,95.9818288638144,95.9818288639144,96.00355839263987,96.00355839273988,96.02087118118635,96.02087118128635,96.0370172836214,96.0370172837214,96.05270504508408,96.05270504518408,96.06733028883815,96.06733028893815,96.08172636210604,96.08172636220604,96.09401823363723,96.09401823373723,96.10589343155719,96.1058934316572,96.11647694128236,96.11647694138236]],"coord_y":[[171055,171055,171055,146626,146626,130087,130087,125912,125912,123356,123356,120757,120757,110113,110113,100683,100683,94402,94402,94128,94128,86338,86338,86091,86091,83692,83692,75851,75851,74389,74389,70983,70983,68899,68899,66259,66259,65970,65970,63686,63686,60088,60088,58100,58100,52185,52185,50167,50167,49555,49555,47648,47648,44603,44603,43958,43958,43734,43734,42412,42412,41964,41964,41162,41162,40514,40514,40050,40050,37248,37248,36673,36673,33877,33877,33606,33606,31729,31729,30476,30476,30272,30272,30162,30162,30023,30023,30002,30002,30000,30000,29926,29926,29201,29201,28762,28762,28641,28641,28479,28479,28144,28144,27007,27007,26322,26322,25699,25699,24808,24808,23206,23206,22516,22516,22468,22468,22069,22069,21662,21662,21583,21583,21240,21240,20887,20887,20691,20691,19879,19879,19066,19066,18769,18769,18767,18767,18412,18412,18397,18397,18015,18015,17404,17404,16588,16588,16552,16552,16151,16151,15873,15873,15185,15185,14849,14849,14790,14790,14541,14541,14377,14377,14297,14297,14176,14176,14128,14128,14100,14100,14034,14034,13835,13835,13790,13790,13676,13676,13516,13516,13514,13514,12777,12777,12341,12341,12149,12149,12093,12093,11660,11660,11610,11610,11024,11024,11005,11005,10975,10975,10850,10850,10675,10675,10514,10514,10496,10496,10016,10016,9781,9781,9780,9780,9725,9725,9674,9674,9558,9558,9427,9427,9365,9365,9088,9088,9079,9079,8979,8979,8926,8926,8918,8918,8533,8533,8506,8506,8496,8496,8457,8457,8117,8117,7922,7922,7875,7875,7860,7860,7780,7780,7733,7733,7497,7497,7364,7364,7306,7306,7205,7205,7132,7132,7089,7089,7086,7086,7001,7001,6944,6944,6730,6730,6685,6685,6667,6667,6655,6655,6571,6571,6279,6279,6209,6209,6076,6076,6006,6006,5910,5910,5779,5779,5750,5750,5501,5501,5484,5484,5377,5377,5341,5341,5226,5226,5209,5209,5157,5157,5054,5054,4995,4995,4973,4973,4957,4957,4934,4934,4846,4846,4814,4814,4802,4802,4765,4765,4728,4728,4673,4673,4479,4479,4422,4422,4310,4310,4269,4269,4009,4009,3995,3995,3986,3986,3941,3941,3879,3879,3716,3716,3610,3610,3484,3484,3434,3434,3409,3409,3304,3304,3282,3282,3252,3252,3172,3172,3082,3082,2979,2979,2836,2836,2804,2804,2802,2802,2599,2599,2564,2564,2473,2473,2198,2198,2129,2129,2103,2103,1974,1974,1956,1956,1897,1897,1869,1869,1860,1860,1791,1791,1780,1780,1692,1692,1659,1659,1508,1508,1481,1481,1467,1467,1402,1402,1388,1388,1377,1377,1287,1287,1203,1203,1150,1150,1064,1064,1043,1043,1041,1041,1025,1025,1024,1024,1014,1014,1004,1004,443,443,377,377,0.0],[112338,112338,112338,82583,82583,77417,77417,71615,71615,68943,68943,65328,65328,64703,64703,63414,63414,60381,60381,58275,58275,58114,58114,52382,52382,51246,51246,49872,49872,48896,48896,47890,47890,45816,45816,43465,43465,41595,41595,41568,41568,41144,41144,38986,38986,38106,38106,36765,36765,36746,36746,36064,36064,35541,35541,34140,34140,33651,33651,31808,31808,31673,31673,31490,31490,30022,30022,29812,29812,29197,29197,29071,29071,28765,28765,28582,28582,28432,28432,28407,28407,28053,28053,27762,27762,27494,27494,26818,26818,26682,26682,25435,25435,25121,25121,24796,24796,24698,24698,24543,24543,24213,24213,23728,23728,23696,23696,23644,23644,22702,22702,22402,22402,21744,21744,20897,20897,20484,20484,20118,20118,19977,19977,19893,19893,19883,19883,19687,19687,19657,19657,19473,19473,19041,19041,18953,18953,18932,18932,18810,18810,18738,18738,17633,17633,17394,17394,17363,17363,17349,17349,17293,17293,17079,17079,16752,16752,16731,16731,16636,16636,16621,16621,16604,16604,16474,16474,16455,16455,16442,16442,16366,16366,16030,16030,15971,15971,15937,15937,15890,15890,15875,15875,15747,15747,15347,15347,15196,15196,15178,15178,15038,15038,14712,14712,14398,14398,14370,14370,14101,14101,14100,14100,14035,14035,14012,14012,13884,13884,13789,13789,13759,13759,13703,13703,13678,13678,13618,13618,13326,13326,13278,13278,13269,13269,13267,13267,13203,13203,13169,13169,13166,13166,12898,12898,12735,12735,12710,12710,12672,12672,12668,12668,12657,12657,12412,12412,12280,12280,12267,12267,12205,12205,12195,12195,12125,12125,12082,12082,11925,11925,11815,11815,11675,11675,11614,11614,11539,11539,11401,11401,11256,11256,11246,11246,11194,11194,11149,11149,11083,11083,10626,10626,10622,10622,10520,10520,10356,10356,10315,10315,10292,10292,10168,10168,10027,10027,9972,9972,9920,9920,9816,9816,9792,9792,9758,9758,9655,9655,9614,9614,9595,9595,9501,9501,9225,9225,9208,9208,9202,9202,9129,9129,9106,9106,9076,9076,9003,9003,8992,8992,8878,8878,8866,8866,8849,8849,8844,8844,8736,8736,8724,8724,8695,8695,8642,8642,8610,8610,8585,8585,8565,8565,8514,8514,8407,8407,8357,8357,8249,8249,8194,8194,7948,7948,7749,7749,7614,7614,7602,7602,7457,7457,7371,7371,7350,7350,7111,7111,7009,7009,6995,6995,6980,6980,6971,6971,6966,6966,6894,6894,6813,6813,6755,6755,6628,6628,6581,6581,6535,6535,6475,6475,6446,6446,6405,6405,6380,6380,6350,6350,6332,6332,6276,6276,6268,6268,6164,6164,6087,6087,6061,6061,6043,6043,5956,5956,5866,5866,5834,5834,5785,5785,5755,5755,5720,5720,5708,5708,5635,5635,5548,5548,5373,5373,5332,5332,5252,5252,5215,5215,5209,5209,5166,5166,5134,5134,5048,5048,5047,5047,5038,5038,5018,5018,4862,4862,4828,4828,4765,4765,4750,4750,4746,4746,4744,4744,4715,4715,4689,4689,4681,4681,4579,4579,4478,4478,4466,4466,4461,4461,4426,4426,4422,4422,4416,4416,4335,4335,4315,4315,4227,4227,4172,4172,4108,4108,4020,4020,3997,3997,3986,3986,3948,3948,3848,3848,3846,3846,3748,3748,3729,3729,3716,3716,3709,3709,3618,3618,3615,3615,3585,3585,3522,3522,3455,3455,3448,3448,3442,3442,3435,3435,3255,3255,3252,3252,3239,3239,3219,3219,3198,3198,3173,3173,3141,3141,3105,3105,3083,3083,3064,3064,3013,3013,2981,2981,2965,2965,2962,2962,2905,2905,2903,2903,2866,2866,2862,2862,2848,2848,2832,2832,2812,2812,2787,2787,2768,2768,2714,2714,2713,2713,2684,2684,2679,2679,2676,2676,2672,2672,2671,2671,2664,2664,2612,2612,2593,2593,2579,2579,2567,2567,2564,2564,2541,2541,2476,2476,2473,2473,2442,2442,2328,2328,2280,2280,2261,2261,2243,2243,2207,2207,2203,2203,2190,2190,2188,2188,2153,2153,2129,2129,2092,2092,1970,1970,1803,1803,1769,1769,1754,1754,1730,1730,1683,1683,1654,1654,1634,1634,1622,1622,1613,1613,1588,1588,1532,1532,1484,1484,1481,1481,1449,1449,1408,1408,1397,1397,1360,1360,1359,1359,1354,1354,1322,1322,1310,1310,1223,1223,1222,1222,1172,1172,1156,1156,1071,1071,1050,1050,1041,1041,1012,1012,717,717,0.0],[31311,31311,31311,28101,28101,27448,27448,27046,27046,26093,26093,24310,24310,24297,24297,24220,24220,23745,23745,23680,23680,22641,22641,22150,22150,21930,21930,21372,21372,20345,20345,20142,20142,20131,20131,19923,19923,19844,19844,19768,19768,19761,19761,19297,19297,19295,19295,19282,19282,19022,19022,18753,18753,18742,18742,17856,17856,17581,17581,17530,17530,17483,17483,17435,17435,17339,17339,17294,17294,17148,17148,16655,16655,16621,16621,16573,16573,16268,16268,16091,16091,15793,15793,15745,15745,15594,15594,15551,15551,15503,15503,15375,15375,15206,15206,15160,15160,15151,15151,14834,14834,14796,14796,14651,14651,14619,14619,14587,14587,14566,14566,14333,14333,14183,14183,14159,14159,14101,14101,14021,14021,13980,13980,13907,13907,13870,13870,13750,13750,13657,13657,13655,13655,13434,13434,13377,13377,13212,13212,13207,13207,13185,13185,13097,13097,13047,13047,13008,13008,12918,12918,12871,12871,12848,12848,12782,12782,12642,12642,12638,12638,12411,12411,12327,12327,12201,12201,12151,12151,12143,12143,12104,12104,12057,12057,12052,12052,11913,11913,11908,11908,11852,11852,11820,11820,11813,11813,11780,11780,11749,11749,11708,11708,11691,11691,11622,11622,11513,11513,11423,11423,11391,11391,11282,11282,11259,11259,11253,11253,11085,11085,10804,10804,10777,10777,10751,10751,10727,10727,10720,10720,10687,10687,10627,10627,10577,10577,10431,10431,10397,10397,10345,10345,10301,10301,10264,10264,10262,10262,10236,10236,10082,10082,10007,10007,9923,9923,9886,9886,9822,9822,9722,9722,9677,9677,9639,9639,9637,9637,9597,9597,9590,9590,9557,9557,9555,9555,9528,9528,9499,9499,9487,9487,9387,9387,9204,9204,9182,9182,9178,9178,9051,9051,8854,8854,8822,8822,8819,8819,8780,8780,8747,8747,8716,8716,8679,8679,8672,8672,8667,8667,8643,8643,8624,8624,8588,8588,8583,8583,8581,8581,8490,8490,8458,8458,8434,8434,8433,8433,8381,8381,8317,8317,8223,8223,8187,8187,8186,8186,8160,8160,8159,8159,8103,8103,8057,8057,8046,8046,8044,8044,8025,8025,7952,7952,7930,7930,7927,7927,7903,7903,7880,7880,7879,7879,7876,7876,7871,7871,7869,7869,7862,7862,7853,7853,7843,7843,7841,7841,7835,7835,7832,7832,7804,7804,7757,7757,7744,7744,7736,7736,7699,7699,7681,7681,7643,7643,7609,7609,7586,7586,7560,7560,7552,7552,7548,7548,7492,7492,7491,7491,7483,7483,7458,7458,7449,7449,7417,7417,7385,7385,7371,7371,7366,7366,7349,7349,7338,7338,7333,7333,7317,7317,7309,7309,7282,7282,7275,7275,7274,7274,7223,7223,7189,7189,7163,7163,7133,7133,7127,7127,7109,7109,7047,7047,7027,7027,7001,7001,6969,6969,6965,6965,6896,6896,6852,6852,6830,6830,6782,6782,6772,6772,6760,6760,6752,6752,6710,6710,6682,6682,6674,6674,6665,6665,6659,6659,6632,6632,6599,6599,6576,6576,6572,6572,6570,6570,6540,6540,6530,6530,6500,6500,6492,6492,6470,6470,6464,6464,6458,6458,6456,6456,6449,6449,6419,6419,6412,6412,6392,6392,6340,6340,6327,6327,6322,6322,6308,6308,6305,6305,6297,6297,6274,6274,6254,6254,6244,6244,6240,6240,6207,6207,6181,6181,6136,6136,6116,6116,6070,6070,6068,6068,6055,6055,6041,6041,6033,6033,6012,6012,5947,5947,5939,5939,5920,5920,5918,5918,5894,5894,5891,5891,5881,5881,5880,5880,5870,5870,5854,5854,5852,5852,5843,5843,5828,5828,5814,5814,5805,5805,5799,5799,5793,5793,5790,5790,5786,5786,5783,5783,5777,5777,5725,5725,5708,5708,5662,5662,5645,5645,5624,5624,5621,5621,5528,5528,5520,5520,5514,5514,5459,5459,5457,5457,5448,5448,5419,5419,5409,5409,5407,5407,5405,5405,5393,5393,5392,5392,5376,5376,5375,5375,5362,5362,5331,5331,5325,5325,5317,5317,5289,5289,5288,5288,5270,5270,5251,5251,5241,5241,5217,5217,5154,5154,5152,5152,5147,5147,5109,5109,5090,5090,5084,5084,5074,5074,5067,5067,5053,5053,5008,5008,5003,5003,4996,4996,4973,4973,4963,4963,4943,4943,4937,4937,4932,4932,4929,4929,4917,4917,4903,4903,4881,4881,4849,4849,4845,4845,4843,4843,4826,4826,4786,4786,4783,4783,4775,4775,4767,4767,4758,4758,4714,4714,4711,4711,4692,4692,4676,4676,4665,4665,4662,4662,4652,4652,4651,4651,4611,4611,4585,4585,4571,4571,4569,4569,4537,4537,4522,4522,4502,4502,4500,4500,4486,4486,4463,4463,4454,4454,4435,4435,4420,4420,4410,4410,4405,4405,4401,4401,4382,4382,4375,4375,4358,4358,4349,4349,4330,4330,4328,4328,4321,4321,4286,4286,4281,4281,4280,4280,4279,4279,4276,4276,4266,4266,4261,4261,4259,4259,4253,4253,4243,4243,4238,4238,4196,4196,4187,4187,4178,4178,4155,4155,4150,4150,4134,4134,4124,4124,4110,4110,4105,4105,4092,4092,4086,4086,4061,4061,4053,4053,4031,4031,4022,4022,4014,4014,4008,4008,4006,4006,4002,4002,3994,3994,3993,3993,3987,3987,3968,3968,3956,3956,3950,3950,3949,3949,3948,3948,3934,3934,3916,3916,3885,3885,3860,3860,3820,3820,3795,3795,3786,3786,3742,3742,3737,3737,3731,3731,3715,3715,3698,3698,3688,3688,3674,3674,3670,3670,3669,3669,3662,3662,3649,3649,3628,3628,3581,3581,3565,3565,3563,3563,3525,3525,3517,3517,3485,3485,3473,3473,3470,3470,3452,3452,3449,3449,3418,3418,3398,3398,3387,3387,3385,3385,3381,3381,3371,3371,3360,3360,3348,3348,3345,3345,3338,3338,3292,3292,3291,3291,3285,3285,3264,3264,3262,3262,3257,3257,3245,3245,3235,3235,3224,3224,3217,3217,3212,3212,3210,3210,3198,3198,3196,3196,3188,3188,3167,3167,3126,3126,3122,3122,3105,3105,3098,3098,3091,3091,3083,3083,3079,3079,3072,3072,3066,3066,3064,3064,3045,3045,3038,3038,3027,3027,3019,3019,2995,2995,2980,2980,2976,2976,2972,2972,2966,2966,2950,2950,2948,2948,2936,2936,2925,2925,2909,2909,2887,2887,2882,2882,2872,2872,2864,2864,2850,2850,2836,2836,2825,2825,2808,2808,2804,2804,2802,2802,2742,2742,2734,2734,2696,2696,2683,2683,2682,2682,2652,2652,2646,2646,2635,2635,2634,2634,2611,2611,2595,2595,2594,2594,2582,2582,2570,2570,2569,2569,2546,2546,2544,2544,2542,2542,2520,2520,2516,2516,2503,2503,2502,2502,2495,2495,2481,2481,2473,2473,2447,2447,2420,2420,2418,2418,2389,2389,2361,2361,2359,2359,2352,2352,2348,2348,2343,2343,2342,2342,2330,2330,2304,2304,2277,2277,2273,2273,2264,2264,2259,2259,2257,2257,2252,2252,2229,2229,2204,2204,2200,2200,2175,2175,2168,2168,2151,2151,2149,2149,2148,2148,2141,2141,2139,2139,2134,2134,2131,2131,2125,2125,2122,2122,2112,2112,2104,2104,2080,2080,2076,2076,2063,2063,2045,2045,2026,2026,2019,2019,2011,2011,2003,2003,1996,1996,1979,1979,1969,1969,1964,1964,1959,1959,1953,1953,1950,1950,1943,1943,1918,1918,1910,1910,1897,1897,1882,1882,1877,1877,1875,1875,1865,1865,1859,1859,1856,1856,1851,1851,1847,1847,1841,1841,1838,1838,1832,1832,1798,1798,1795,1795,1791,1791,1786,1786,1785,1785,1783,1783,1779,1779,1777,1777,1773,1773,1761,1761,1753,1753,1751,1751,1739,1739,1725,1725,1724,1724,1718,1718,1706,1706,1701,1701,1690,1690,1672,1672,1665,1665,1662,1662,1660,1660,1654,1654,1652,1652,1643,1643,1639,1639,1629,1629,1628,1628,1624,1624,1622,1622,1621,1621,1613,1613,1608,1608,1606,1606,1594,1594,1579,1579,1572,1572,1566,1566,1565,1565,1558,1558,1552,1552,1531,1531,1505,1505,1498,1498,1487,1487,1480,1480,1467,1467,1462,1462,1456,1456,1454,1454,1453,1453,1446,1446,1444,1444,1433,1433,1431,1431,1428,1428,1413,1413,1409,1409,1406,1406,1404,1404,1399,1399,1398,1398,1397,1397,1390,1390,1383,1383,1380,1380,1377,1377,1370,1370,1368,1368,1366,1366,1364,1364,1350,1350,1342,1342,1314,1314,1305,1305,1296,1296,1295,1295,1287,1287,1280,1280,1262,1262,1259,1259,1247,1247,1245,1245,1227,1227,1225,1225,1215,1215,1214,1214,1213,1213,1208,1208,1207,1207,1197,1197,1192,1192,1191,1191,1178,1178,1169,1169,1165,1165,1156,1156,1155,1155,1151,1151,1150,1150,1133,1133,1132,1132,1131,1131,1129,1129,1116,1116,1115,1115,1113,1113,1093,1093,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1039,1039,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,510,510,509,509,471,471,0.0],[139088,139088,139088,137074,137074,125994,125994,115227,115227,104128,104128,102384,102384,101960,101960,95658,95658,92381,92381,87430,87430,85288,85288,78274,78274,76266,76266,75552,75552,74864,74864,68267,68267,63733,63733,59295,59295,58562,58562,57807,57807,56789,56789,55560,55560,53829,53829,53792,53792,52750,52750,51263,51263,49211,49211,48776,48776,45329,45329,45158,45158,44026,44026,43873,43873,42900,42900,42329,42329,42185,42185,42036,42036,40573,40573,39582,39582,39569,39569,38627,38627,35744,35744,35719,35719,35660,35660,35157,35157,35000,35000,34359,34359,32459,32459,31893,31893,31647,31647,31100,31100,31030,31030,28493,28493,26846,26846,26698,26698,25920,25920,25907,25907,24658,24658,24591,24591,24247,24247,23865,23865,23552,23552,23028,23028,23003,23003,22557,22557,22150,22150,21531,21531,21372,21372,21261,21261,20268,20268,20140,20140,20052,20052,19761,19761,18862,18862,18120,18120,17888,17888,17358,17358,17186,17186,16970,16970,16866,16866,16733,16733,16610,16610,16524,16524,15888,15888,14552,14552,14086,14086,13820,13820,13457,13457,13452,13452,13377,13377,12871,12871,12782,12782,12642,12642,12413,12413,12375,12375,12210,12210,12118,12118,12110,12110,11939,11939,11904,11904,11701,11701,11463,11463,11369,11369,11231,11231,11073,11073,10647,10647,10474,10474,10301,10301,10082,10082,9810,9810,9722,9722,9182,9182,9180,9180,9178,9178,8583,8583,8581,8581,8204,8204,8159,8159,8065,8065,7879,7879,7799,7799,7654,7654,7586,7586,7492,7492,7449,7449,7399,7399,7275,7275,7001,7001,6852,6852,6500,6500,6492,6492,6412,6412,6297,6297,6240,6240,5894,5894,5881,5881,5843,5843,5805,5805,5799,5799,5684,5684,5251,5251,4937,4937,4711,4711,4665,4665,4652,4652,4502,4502,4192,4192,4110,4110,4015,4015,4006,4006,3885,3885,3670,3670,3649,3649,3381,3381,3188,3188,3122,3122,3091,3091,3079,3079,3064,3064,3051,3051,2976,2976,2972,2972,2961,2961,2872,2872,2839,2839,2825,2825,2652,2652,2473,2473,2420,2420,2359,2359,2141,2141,2131,2131,2080,2080,2011,2011,1996,1996,1959,1959,1798,1798,1773,1773,1724,1724,1606,1606,1480,1480,1453,1453,1433,1433,1380,1380,1368,1368,1295,1295,1280,1280,1247,1247,1169,1169,1150,1150,1132,1132,1131,1131,1129,1129,1088,1088,1077,1077,1075,1075,1072,1072,1061,1061,1054,1054,1047,1047,1042,1042,1039,1039,1028,1028,1017,1017,1015,1015,1006,1006,999,999,996,996,989,989,983,983,980,980,978,978,966,966,959,959,938,938,932,932,931,931,929,929,913,913,909,909,893,893,892,892,879,879,873,873,848,848,840,840,839,839,821,821,820,820,808,808,803,803,780,780,771,771,751,751,743,743,738,738,736,736,734,734,725,725,720,720,713,713,696,696,694,694,693,693,688,688,687,687,684,684,678,678,674,674,668,668,667,667,639,639,637,637,636,636,617,617,612,612,608,608,601,601,595,595,572,572,571,571,569,569,567,567,563,563,556,556,550,550,549,549,546,546,543,543,531,531,524,524,517,517,516,516,510,510,509,509,471,471,0.0],[219320,219320,219320,208731,208731,202130,202130,170658,170658,164670,164670,130131,130131,115499,115499,106643,106643,102931,102931,102164,102164,94836,94836,93957,93957,92032,92032,86732,86732,83308,83308,79444,79444,66932,66932,66137,66137,65866,65866,63511,63511,63449,63449,62173,62173,60070,60070,59946,59946,56615,56615,54809,54809,53479,53479,52147,52147,51904,51904,51179,51179,48481,48481,48113,48113,44418,44418,43991,43991,42863,42863,42436,42436,41989,41989,41958,41958,36584,36584,36558,36558,35544,35544,35301,35301,33982,33982,33685,33685,31126,31126,31094,31094,30391,30391,30345,30345,28958,28958,28658,28658,28031,28031,24757,24757,24051,24051,23997,23997,22939,22939,22862,22862,21423,21423,21347,21347,20094,20094,19934,19934,19640,19640,19577,19577,18334,18334,17247,17247,17138,17138,16985,16985,16955,16955,16926,16926,16739,16739,16683,16683,16508,16508,16026,16026,16014,16014,15554,15554,15339,15339,14958,14958,14778,14778,14031,14031,13963,13963,13696,13696,13416,13416,13159,13159,12760,12760,12170,12170,12031,12031,11902,11902,11798,11798,11424,11424,11284,11284,11196,11196,11187,11187,10659,10659,9705,9705,9209,9209,9117,9117,9054,9054,8972,8972,8683,8683,8418,8418,8396,8396,8237,8237,8168,8168,8037,8037,7640,7640,7600,7600,7415,7415,7316,7316,7314,7314,7293,7293,7000,7000,6977,6977,6912,6912,6887,6887,6553,6553,6177,6177,6097,6097,5991,5991,5560,5560,4780,4780,4575,4575,4470,4470,4428,4428,4370,4370,4268,4268,3610,3610,3448,3448,3411,3411,3346,3346,3269,3269,3031,3031,2933,2933,2889,2889,2627,2627,2555,2555,2466,2466,2266,2266,2107,2107,1980,1980,1974,1974,1660,1660,1590,1590,1409,1409,1393,1393,1371,1371,1304,1304,1162,1162,1152,1152,1089,1089,1043,1043,831,831,775,775,753,753,702,702,691,691,590,590,570,570,508,508,0.0]]}
    {"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"coord_x":[[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19],[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19],[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19],[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19],[0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19]],"coord_y":[[84.38994816580276,84.38994816580276,86.02539208986816,86.02539208986816,87.97134118901981,87.97134118901981,89.60678511308522,89.60678511308522,90.75601260021,90.75601260021,91.4640035667261,91.4640035667261,91.81061351022517,91.81061351022517,92.70585759762663,92.70585759762663,93.05246754112568,93.05246754112568,93.92364872747879,93.92364872747879,94.27025867097785,94.27025867097785,94.51422107035117,94.51422107035117,94.68270304505076,94.68270304505076,94.96447857464291,94.96447857464291,95.13296054934249,95.13296054934249,95.29169236153936,95.29169236153936,95.44294488241471,95.44294488241471,95.44294488241471,95.44294488241471,95.52900881681362,95.52900881681362],[92.37797713295221,92.37797713295221,92.974799579993,92.974799579993,93.45151585859765,93.45151585859765,93.86125185419758,93.86125185419758,94.3356555942599,94.3356555942599,94.74539158985984,94.74539158985984,95.04868831147186,95.04868831147186,95.23175386256437,95.23175386256437,95.38379806330106,95.38379806330106,95.52744629077151,95.52744629077151,95.6259687661461,95.6259687661461,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027,95.72299121652027],[95.2560459340989,95.2560459340989,95.42844464074402,95.42844464074402,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213,95.57163452724213],[93.81206353439224,93.81206353439224,94.88874814580242,94.88874814580242,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343,95.12037700628343],[96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236,96.11647694128236]]}
    {{ genesInContigs }}
    {{ operonsInContigs }}
    [{{ num_contigs }}, {{ Largest_alignment }}, {{ Total_aligned_length }}, {{ num_misassemblies }}, {{ Misassembled_contigs_length }}, {{ num_mismatches_per_100_kbp }}, {{ num_indels_per_100_kbp }}, {{ num_N's_per_100_kbp }}, {{ Genome_fraction }}, {{ Duplication_ratio }}, {{ NGA50 }}]
    {{ allMisassemblies }}
    {{ krona }}
    {"reference_index":5,"list_of_GC_distributions":[[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,0,1,3,1,1,6,7,16,26,54,54,113,152,246,309,437,599,684,841,1043,1082,1295,1330,1440,1467,1545,1616,1671,1750,1840,1856,1920,1929,2025,2016,1956,1912,1787,1653,1487,1351,1204,1011,866,697,554,419,335,285,202,162,95,97,65,54,44,26,25,24,20,6,11,5,7,3,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,0,0,3,1,3,6,14,13,29,51,53,97,152,219,339,496,593,737,868,973,1105,1262,1264,1393,1482,1543,1622,1696,1795,1821,1851,1877,2016,2041,2006,1941,1838,1817,1642,1511,1370,1196,993,829,670,579,433,352,266,206,164,105,94,59,73,35,38,21,21,16,7,7,7,3,3,3,2,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,1,0,0,2,2,5,8,16,35,42,61,115,157,236,327,487,568,755,815,1032,1139,1259,1241,1475,1486,1562,1586,1686,1753,1779,1940,1916,1993,2033,2044,1961,1833,1718,1708,1503,1377,1233,1030,826,688,572,446,328,272,196,156,141,79,68,41,37,36,25,17,20,14,10,7,3,3,2,1,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,1,0,0,2,2,6,4,20,24,53,59,117,176,228,334,440,648,723,901,984,1113,1251,1257,1402,1445,1577,1585,1718,1836,1769,1867,1973,1965,1997,2053,1970,1877,1742,1640,1475,1367,1238,1050,861,716,545,467,357,259,190,147,116,84,71,44,39,38,23,13,17,14,6,7,4,5,0,1,2,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,0,0,1,2,0,7,11,14,29,43,60,113,180,213,333,462,596,721,878,982,1153,1248,1304,1395,1491,1541,1693,1660,1797,1856,1859,1959,1987,2010,2010,2053,1849,1776,1720,1447,1357,1194,1045,837,735,620,427,318,272,198,162,141,105,80,56,36,28,30,18,15,8,8,4,4,4,2,1,1,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0,11.0,12.0,13.0,14.0,15.0,16.0,17.0,18.0,19.0,20.0,21.0,22.0,23.0,24.0,25.0,26.0,27.0,28.0,29.0,30.0,31.0,32.0,33.0,34.0,35.0,36.0,37.0,38.0,39.0,40.0,41.0,42.0,43.0,44.0,45.0,46.0,47.0,48.0,49.0,50.0,51.0,52.0,53.0,54.0,55.0,56.0,57.0,58.0,59.0,60.0,61.0,62.0,63.0,64.0,65.0,66.0,67.0,68.0,69.0,70.0,71.0,72.0,73.0,74.0,75.0,76.0,77.0,78.0,79.0,80.0,81.0,82.0,83.0,84.0,85.0,86.0,87.0,88.0,89.0,90.0,91.0,92.0,93.0,94.0,95.0,96.0,97.0,98.0,99.0,100.0],[0,2,2,1,0,3,7,15,13,35,47,76,107,160,230,334,493,575,710,886,1023,1088,1264,1324,1410,1563,1517,1624,1670,1779,1859,1865,1935,2002,2003,1988,1979,1880,1835,1678,1560,1382,1217,1012,856,688,559,387,361,256,229,143,129,93,84,47,39,27,26,15,13,14,8,6,1,5,4,2,0,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]],"filenames":["contigs_velvet_K75","contigs_velvetOpt_K91","contigs_SPAdes","scaffolds_SPAdes","scaffolds_MaSuRCA"],"lists_of_gc_info":null,"list_of_GC_contigs_distributions":[[[0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100],[0,0,0,0,6,70,98,19,10,1,0,0,0,0,0,0,0,0,0,0,0]],[[0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100],[0,0,0,0,15,100,161,60,7,2,0,0,0,0,0,0,0,0,0,0,0]],[[0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100],[0,0,0,1,63,224,288,229,23,3,0,0,0,0,0,0,0,0,0,0,0]],[[0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100],[0,0,0,0,10,77,123,53,15,3,0,0,0,0,0,0,0,0,0,0,0]],[[0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100],[0,0,0,0,1,47,83,16,9,1,0,0,0,0,0,0,0,0,0,0,0]]]}
    {"links":["icarus_viewers/alignment_viewer.html"],"links_names":["View in Icarus contig browser"]}
    { "# contigs" : "is the total number of contigs in the assembly.", "Largest contig" : "is the length of the longest contig in the assembly.", "Total length" : "is the total number of bases in the assembly.", "Reference length" : "is the total number of bases in the reference.", "# contigs (>= 0 bp)" : "is the total number of contigs in the assembly that have size greater than or equal to 0 bp.", "Total length (>= 0 bp)" : "is the total number of bases in the contigs having size greater than or equal to 0 bp.", "N50" : "is the contig length such that using longer or equal length contigs produces half (50%) of the bases of the assembly. Usually there is no value that produces exactly 50%, so the technical definition is the maximum length x such that using contigs of length at least x accounts for at least 50% of the total assembly length.", "NG50" : "is the contig length such that using longer or equal length contigs produces half (50%) of the bases of the reference genome. This metric is computed only if a reference genome is provided.", "N75" : "is the contig length such that using longer or equal length contigs produces 75% of the bases of the assembly. Usually there is no value that produces exactly 75%, so the technical definition is the maximum length x such that using contigs of length at least x accounts for at least 75% of the total assembly length.", "NG75" : "is the contig length such that using longer or equal length contigs produces 75% of the bases of the reference genome. This metric is computed only if a reference genome is provided.", "L50" : "is the minimum number of contigs that produce half (50%) of the bases of the assembly. In other words, it's the number of contigs of length at least N50.", "LG50" : "is the minimum number of contigs that produce half (50%) of the bases of the reference genome. In other words, it's the number of contigs of length at least NG50. This metric is computed only if a reference genome is provided.", "L75" : "is the minimum number of contigs that produce 75% of the bases of the assembly. In other words, it's the number of contigs of length at least N75.", "LG75" : "is the minimum number of contigs that produce 75% of the bases of the reference genome. In other words, it's the number of contigs of length at least NG75. This metric is computed only if a reference genome is provided.", "NA50" : "is N50 where the lengths of aligned blocks are counted instead of contig lengths. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces. This metric is computed only if a reference genome is provided.", "NGA50" : "is NG50 where the lengths of aligned blocks are counted instead of contig lengths. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces. This metric is computed only if a reference genome is provided.", "NA75" : "is N75 where the lengths of aligned blocks are counted instead of contig lengths. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces. This metric is computed only if a reference genome is provided.", "NGA75" : "is NG75 where the lengths of aligned blocks are counted instead of contig lengths. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces. This metric is computed only if a reference genome is provided.", "LA50" : "is L50 where aligned blocks are counted instead of contigs. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces.", "LGA50" : "is LG50 where aligned blocks are counted instead of contigs. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces.", "LA75" : "is L75 where aligned blocks are counted instead of contigs. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces.", "LGA75" : "is LG75 where aligned blocks are counted instead of contigs. I.e., if a contig has a misassembly with respect to the reference, the contig is broken into smaller pieces.", "Average %IDY" : "is the average of alignment identity percent (Nucmer measure of alignment accuracy) among all contigs.", "# misassemblies" : "is the number of positions in the assembled contigs where the left flanking sequence aligns over 1 kbp away from the right flanking sequence on the reference (relocation) or they overlap on more than 1 kbp (relocation) or flanking sequences align on different strands (inversion) or different chromosomes (translocation).", "# large block misassemblies" : "is the number of misassemblies between alignments with length greater than or equal to 3 kbp and with the misassembly threshold equal to 5 kbp (instead of default 1 kbp for regular misassemblies).", "# misassembled contigs" : "is the number of contigs that contain misassembly events.", "Misassembled contigs length" : "is the number of total bases contained in all contigs that have one or more misassemblies.", "# relocations" : "is the number of relocation events among all misassembly events. Relocation is a misassembly where the left flanking sequence aligns over 1 kbp away from the right flanking sequence on the reference, or they overlap by more than 1 kbp and both flanking sequences align on the same chromosome.", "# translocations" : "is the number of translocation events among all misassembly events. Translocation is a misassembly where the flanking sequences align on different chromosomes.", "# interspecies translocations" : "is the number of interspecies translocation events among all misassembly events. Interspecies translocation is a misassembly where the flanking sequences align on different references (based on alignments to the combined reference).", "# inversions" : "is the number of inversion events among all misassembly events. Inversion is a misassembly where it is not a relocation and the flanking sequences align on opposite strands of the same chromosome.", "# large relocations" : "is the number of relocation events among all large block misassemblies. Relocation is a misassembly where the left flanking sequence aligns over 5 kbp away from the right flanking sequence on the reference, or they overlap by more than 5 kbp and both flanking sequences align on the same chromosome.", "# large translocations" : "is the number of translocation events among all large block misassemblies. Translocation is a misassembly where the flanking sequences align on different chromosomes.", "# large i/s translocations" : "is the number of interspecies translocation events among all large block misassemblies. Interspecies translocation is a misassembly where the flanking sequences align on different references (based on alignments to the combined reference).", "# large inversions" : "is the number of inversion events among all large block misassemblies. Inversion is a misassembly where it is not a relocation and the flanking sequences align on opposite strands of the same chromosome.", "# local misassemblies" : "is the number of local misassemblies. We define a local misassembly breakpoint as a breakpoint that satisfies these conditions:
    1. Two or more distinct alignments cover the breakpoint.
    2. The gap between left and right flanking sequences is less than the misassembly threshold (1 kbp by default).
    3. The left and right flanking sequences both are on the same strand of the same chromosome of the reference genome.
    ", "# scaffold gap ext. mis." : "is the number of scaffold gap size extensive misassemblies. We define a scaffold gap size misassembly as a breakpoint where the flanking sequences are combined in a scaffold on the wrong distance. These misassemblies are not included in the total number of misassemblies. ", "# scaffold gap loc. mis." : "is the number of scaffold gap size local misassemblies. Such breakpoints satisfy the local misassembly conditions but they occur inside scaffolds. These misassemblies are not included in the total number of local misassemblies. ", "# possibly misassembled contigs": "is the number of contigs that contain large unaligned fragment (default min length is 500 bp) and thus could possibly contain interspecies translocation with unknown reference.", "# possible misassemblies" : "is the number of putative interspecies translocations in possibly misassembled contigs if each large unaligned fragment is supposed to be a fragment of unknown reference.", "# intergenomic misassemblies" : "is the number of all found and putative (possible) interspecies translocations.", "# structural variations" : "is the number of misassemblies matched with structural variations.", "# possible TEs" : "is the number of misassemblies possibly caused by transposable elements (TEs). We define a possible TE as an event that satisfies these conditions:
    1. There are two misassembly breakpoints of the same type around a short alignment (less than 7 kbp by default)
    2. The gap between two long flanking sequences on the sides of the short alignment is less than 7 kbp.
    3. The long flanking sequences both are on the same strand of the same chromosome of the reference genome.
    ", "# unaligned mis. contigs" : "is the number of contigs that have the number of unaligned bases more than 50% of contig length and a misassembly event in their aligned fragment. Note that such misassemblies are not counted in # misassemblies and other misassemblies statistics.", "# fully unaligned contigs" : "is the number of contigs that have no alignment to the reference sequence.", "Fully unaligned length" : "is the total number of bases contained in all fully unaligned contigs. Uncalled bases (N's) are not counted.", "# partially unaligned contigs" : "is the number of contigs that have at least one alignment to the reference sequence but also have at least one unaligned fragment of length ≥ unaligned-part-size threshold.", "Partially unaligned length" : "is the total number of unaligned bases in all partially unaligned contigs. Uncalled bases (N's) are not counted.", "# ambiguous contigs" : "is the number of contigs that have reference alignments of equal quality in multiple locations on the reference.", "Ambiguous contigs length" : "is the total number of bases contained in all ambiguous contigs.", "Genome fraction (%)" : "is the total number of aligned bases in the reference, divided by the genome size. A base in the reference genome is counted as aligned if there is at least one contig with at least one alignment to this base. Contigs from repeat regions may map to multiple places, and thus may be counted multiple times in this quantity.", "GC (%)" : "is the total number of G and C nucleotides in the assembly, divided by the total length of the assembly.", "Reference GC (%)" : "is the total number of G and C nucleotides in the reference, divided by the total length of the reference.", "# mismatches per 100 kbp" : "is the average number of mismatches per 100000 aligned bases.", "# mismatches" : "is the number of mismatches in all aligned bases.", "# indels per 100 kbp" : "is the average number of indels per 100000 aligned bases.", "# indels" : "is the number of indels in all aligned bases", "# indels (<= 5 bp)" : "is the number of indels of length less than or equal to 5 bp", "# indels (> 5 bp)" : "is the number of indels of length greater than 5 bp", "Indels length" : "is the number of total bases contained in all indels", "# genomic features" : "is the number of genomic features (genes, transcripts, CDS) in the assembly (complete and partial), based on a user-provided annotated list of gene positions in the reference genome. A feature counts as 'partially covered' if the assembly contains at least 100 bp of this feature but not the whole feature.", "# operons" : "is the number of operons in the assembly (complete and partial), based on a user-provided annotated list of operon positions in the reference genome. An operon counts as 'partially covered' if the assembly contains at least 100 bp of this operon but not the whole operon.", "# predicted genes (unique)" : "is the number of unique genes in the assembly found by a gene prediction tool.", "# predicted genes (>= 0 bp)" : "is the number of found genes having length greater than or equal to 0 bp.", "Cumulative length" : "plot shows the growth of assembly contig lengths. On the x-axis, contigs are ordered from largest (contig #1) to smallest. The y-axis gives the size of the x largest contigs in the assembly.", "Nx" : "plot shows the Nx metric value as x varies from 0 to 100. Nx is the minimum contig length y such that using contigs of length at least y accounts for at least x% of the total assembly length.", "NGx" : "plot shows the NGx metric value as x varies from 0 to 100. NGx is the minimum contig length y such that using contigs of length at least y accounts for at least x% of the bases of the reference genome. This metric is computed only if a reference genome is provided.", "NAx" : "plot shows the NAx metric value as x varies from 0 to 100. NAx is computed similarly to Nx, but based on lengths of aligned blocks instead of contig lengths. Contigs are broken into aligned blocks at misassembly breakpoints. NAx is the minimum block length y such that using blocks of length at least y accounts for at least x% of the bases of the assembly. This metric is computed only if a reference genome is provided.", "NGAx" : "plot shows the NGAx metric value as x varies from 0 to 100.NGAx is computed similarly to NGx, but based on lengths of aligned blocks instead of contig lengths. Contigs are broken at misassembly breakpoints. NGAx is the minimum block length y such that using blocks of length at least y accounts for at least x% of the bases of the reference genome. This metric is computed only if a reference genome is provided.", "GC content" : "plot shows the distribution of GC percentage among the contigs, i.e., the total number of bases in contigs with such GC content. Typically, the distribution is approximately Gaussian. However, for some genomes it is not Gaussian. For assembly projects with contaminants, the GC distribution of the contaminants often differs from the reference genome and may give a superposition of multiple curves with different peaks.", "Duplication ratio" : "is the total number of aligned bases in the assembly (i.e. Total length - Fully unaligned length - Partially unaligned length), divided by the total number of aligned bases in the reference (see the Genome fraction (%) metric). If the assembly contains many contigs that cover the same regions of the reference, its Duplication ratio may be much larger than 1. This may occur due to overestimating repeat multiplicities and due to small overlaps between contigs, among other reasons.", "Largest alignment" : "is the length of the largest continuous alignment in the assembly. This metric is always equal to the Largest contig metric but it can be smaller if the largest contig of the assembly contains a misassembly event.", "Total aligned length" : "is the total number of aligned bases in the assembly.", "Avg contig read support" : "is the average coverage of contigs that have large unique alignments to the reference. Read coverage is extracted from contig names (SPAdes/Velvet naming scheme only).", "# N's" : "is the total number of uncalled bases (N's) in the assembly.", "# N's per 100 kbp" : "is the average number of uncalled bases (N's) per 100000 assembly bases.", "# mapped" : "is the number of reads that mapped to the assembly.", "Mapped (%)" : "is the percent of reads that mapped to the assembly.", "# properly paired" : "is the number of reads that mapped within expected range and orientation of each other to the assembly.", "Properly paired (%)" : "is the percent of reads that mapped within expected range and orientation of each other to the assembly.", "# singletons" : "is the number of reads which do not overlap any other reads.", "Singletons (%)" : "is the percent of reads which do not overlap any other reads.", "# misjoint mates" : "is the number of reads with mate mapped to a different contig.", "Misjoint mates (%)" : "is the percent of reads with mate mapped to a different contig.", "Avg. coverage depth" : "is the average depth of coverage.", "Coverage >= 1x (%)" : "is the total number of bases with at least 1x coverage, divided by the total length of the assembly.", "# similar correct contigs" : "is the number of correct contigs similar among > 50% assemblies (see Icarus for visualization).", "# similar misassembled blocks" : "is the number of misassembled blocks similar among > 50% assemblies (see Icarus for visualization)." }