码迷,mamicode.com
首页 > 其他好文 > 详细

mahout安装测试

时间:2014-08-26 19:44:17      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:mahout   hadoop   

Mahout 是 Apache Software Foundation(ASF) 旗下的一个开源项目,提供一些可扩展的机器学习领域经典算法的实现,旨在帮助开发人员更加方便快捷地创建智能应用程序。Apache Mahout项目已经发展到了它的第三个年头,目前已经有了三个公共发行版本。Mahout包含许多实现,包括聚类、分类、推荐过滤、频繁子项挖掘。此外,通过使用 Apache Hadoop 库,Mahout 可以有效地扩展到云中。
Mahout 的创始人 Grant Ingersoll 介绍了机器学习的基本概念,并演示了如何使用 Mahout 来实现文档聚类、提出建议和组织内容。

1:下载

下载地址:http://mahout.apache.org

直接下载http://mirrors.cnnic.cn/apache/mahout/0.9/mahout-distribution-0.9.tar.gz

2:解压

[jifeng@jifeng01 ~]$ cd hadoop
[jifeng@jifeng01 hadoop]$ ls
074600-99999-2013.gz  hadoop-1.2.1.tar.gz             mahout-distribution-0.9.tar.gz
awk                   java                            sample.txt
hadoop-1.2.1          tmp
[jifeng@jifeng01 hadoop]$ tar zxf mahout-distribution-0.9.tar.gz  

[jifeng@jifeng01 hadoop]$ ls
074600-99999-2013.gz  hadoop-1.2.1         java                     mahout-distribution-0.9.tar.gz  tmp
awk                   hadoop-1.2.1.tar.gz  mahout-distribution-0.9  sample.txt

3:配置环境

未修改前

[jifeng@jifeng01 hadoop]$ cd ..
[jifeng@jifeng01 ~]$ cat .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH
export JAVA_HOME=$HOME/jdk1.7.0_45
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export HADOOP_HOME=$HOME/hadoop/hadoop-1.2.1
export ANT_HOME=$HOME/apache-ant-1.9.4
export HBASE_HOME=$HOME/hbase-0.94.21
export SQOOP_HOME=$HOME/sqoop-1.99.3-bin-hadoop100
export CATALINA_HOME=$SQOOP_HOME/server
export LOGDIR=$SQOOP_HOME/logs

export PATH=$PATH:$ANT_HOME/bin:$HBASE_HOME/bin:$SQOOP_HOME/bin:$HADOOP_HOME/bin
修改后

[jifeng@jifeng01 ~]$ cat .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH
export JAVA_HOME=$HOME/jdk1.7.0_45
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export HADOOP_HOME=$HOME/hadoop/hadoop-1.2.1
export HADOOP_CONF_DIR=$HOME/hadoop/hadoop-1.2.1/conf
export ANT_HOME=$HOME/apache-ant-1.9.4
export HBASE_HOME=$HOME/hbase-0.94.21
export SQOOP_HOME=$HOME/sqoop-1.99.3-bin-hadoop100
export CATALINA_HOME=$SQOOP_HOME/server
export LOGDIR=$SQOOP_HOME/logs

export MAHOUT_HOME=$HOME/hadoop/mahout-distribution-0.9
export MAHOUT_CONF_DIR=$HOME/hadoop/mahout-distribution-0.9/conf

export PATH=$PATH:$ANT_HOME/bin:$HBASE_HOME/bin:$SQOOP_HOME/bin:$HADOOP_HOME/bin:$MAHOUT_HOME/bin
几个重要环境变量 
JAVA_HOME    mahout运行需指定jdk的目录 
MAHOUT_JAVA_HOME指定此变量可覆盖JAVA_HOME值 
HADOOP_HOME  如果配置,则在hadoop分布式平台上运行,否则单机运行 
HADOOP_CONF_DIR指定hadoop的配置文件目录 
MAHOUT_LOCAL    如果此变量值不为空,则单机运行mahout。 
MAHOUT_CONF_DIR  mahout配置文件的路径,默认值是$MAHOUT_HOME/src/conf 
MAHOUT_HEAPSIZE   mahout运行时可用的最大heap大小 


4:运行

注意:必须先运行hadoop

[jifeng@jifeng01 ~]$ mahout 
MAHOUT_LOCAL is not set; adding HADOOP_CONF_DIR to classpath.
Warning: $HADOOP_HOME is deprecated.

Running on hadoop, using /home/jifeng/hadoop/hadoop-1.2.1/bin/hadoop and HADOOP_CONF_DIR=/home/jifeng/hadoop/hadoop-1.2.1/conf
MAHOUT-JOB: /home/jifeng/hadoop/mahout-distribution-0.9/mahout-examples-0.9-job.jar
Warning: $HADOOP_HOME is deprecated.

An example program must be given as the first argument.
Valid program names are:
  arff.vector: : Generate Vectors from an ARFF file or directory
  baumwelch: : Baum-Welch algorithm for unsupervised HMM training
  canopy: : Canopy clustering
  cat: : Print a file or resource as the logistic regression models would see it
  cleansvd: : Cleanup and verification of SVD output
  clusterdump: : Dump cluster output to text
  clusterpp: : Groups Clustering Output In Clusters
  cmdump: : Dump confusion matrix in HTML or text formats
  concatmatrices: : Concatenates 2 matrices of same cardinality into a single matrix
  cvb: : LDA via Collapsed Variation Bayes (0th deriv. approx)
  cvb0_local: : LDA via Collapsed Variation Bayes, in memory locally.
  evaluateFactorization: : compute RMSE and MAE of a rating matrix factorization against probes
  fkmeans: : Fuzzy K-means clustering
  hmmpredict: : Generate random sequence of observations by given HMM
  itemsimilarity: : Compute the item-item-similarities for item-based collaborative filtering
  kmeans: : K-means clustering
  lucene.vector: : Generate Vectors from a Lucene index
  lucene2seq: : Generate Text SequenceFiles from a Lucene index
  matrixdump: : Dump matrix in CSV format
  matrixmult: : Take the product of two matrices
  parallelALS: : ALS-WR factorization of a rating matrix
  qualcluster: : Runs clustering experiments and summarizes results in a CSV
  recommendfactorized: : Compute recommendations using the factorization of a rating matrix
  recommenditembased: : Compute recommendations using item-based collaborative filtering
  regexconverter: : Convert text files on a per line basis based on regular expressions
  resplit: : Splits a set of SequenceFiles into a number of equal splits
  rowid: : Map SequenceFile<Text,VectorWritable> to {SequenceFile<IntWritable,VectorWritable>, SequenceFile<IntWritable,Text>}
  rowsimilarity: : Compute the pairwise similarities of the rows of a matrix
  runAdaptiveLogistic: : Score new production data using a probably trained and validated AdaptivelogisticRegression model
  runlogistic: : Run a logistic regression model against CSV data
  seq2encoded: : Encoded Sparse Vector generation from Text sequence files
  seq2sparse: : Sparse Vector generation from Text sequence files
  seqdirectory: : Generate sequence files (of Text) from a directory
  seqdumper: : Generic Sequence File dumper
  seqmailarchives: : Creates SequenceFile from a directory containing gzipped mail archives
  seqwiki: : Wikipedia xml dump to sequence file
  spectralkmeans: : Spectral k-means clustering
  split: : Split Input data into test and train sets
  splitDataset: : split a rating dataset into training and probe parts
  ssvd: : Stochastic SVD
  streamingkmeans: : Streaming k-means clustering
  svd: : Lanczos Singular Value Decomposition
  testnb: : Test the Vector-based Bayes classifier
  trainAdaptiveLogistic: : Train an AdaptivelogisticRegression model
  trainlogistic: : Train a logistic regression using stochastic gradient descent
  trainnb: : Train the Vector-based Bayes classifier
  transpose: : Take the transpose of a matrix
  validateAdaptiveLogistic: : Validate an AdaptivelogisticRegression model against hold-out data set
  vecdist: : Compute the distances between a set of Vectors (or Cluster or Canopy, they must fit in memory) and a list of Vectors
  vectordump: : Dump vectors from a sequence file to text
  viterbi: : Viterbi decoding of hidden states from given output states sequence
[jifeng@jifeng01 ~]$ ls

当你看到上面的代码时,以为是错的,其实不是,原因:
      MAHOUT_LOCAL:设置是否本地运行,如果设置这个参数就不会运行hadoop了,一旦设置这个参数,那HADOOP_CONF_DIR 和HADOOP_HOME 这两个参数的
      设置就自动失效了。

MAHOUT_LOCAL is not set; adding HADOOP_CONF_DIR to classpath.
hadoop binary is not in PATH,HADOOP_HOME/bin,HADOOP_PREFIX/bin, running locally


5:kmeans聚类测试 

先下载样本数据

[jifeng@jifeng01 ~]$ cd hadoop
[jifeng@jifeng01 hadoop]$ wget http://archive.ics.uci.edu/ml/databases/synthetic_control/synthetic_control.data
--2014-08-26 18:07:17--  http://archive.ics.uci.edu/ml/databases/synthetic_control/synthetic_control.data
正在解析主机 archive.ics.uci.edu... 128.195.1.87
Connecting to archive.ics.uci.edu|128.195.1.87|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:288374 (282K) [text/plain]
Saving to: `synthetic_control.data'

100%[======================================================================================>] 288,374     22.2K/s   in 30s     

2014-08-26 18:07:47 (9.46 KB/s) - `synthetic_control.data' saved [288374/288374]

[jifeng@jifeng01 hadoop]$ 


在hadoop中创建testdata目录

[jifeng@jifeng01 hadoop]$ cd hadoop-1.2.1
[jifeng@jifeng01 hadoop-1.2.1]$ bin/hadoop fs -mkdir ./testdata
Warning: $HADOOP_HOME is deprecated.

[jifeng@jifeng01 hadoop-1.2.1]$ bin/hadoop fs -ls ./testdata   
Warning: $HADOOP_HOME is deprecated.

[jifeng@jifeng01 hadoop-1.2.1]$ bin/hadoop fs -ls ./
Warning: $HADOOP_HOME is deprecated.

Found 10 items
-rw-r--r--   1 jifeng        supergroup         20 2014-08-06 10:30 /user/jifeng/FileSystemCat.java
-rw-r--r--   1 jifeng        supergroup         29 2014-08-05 17:40 /user/jifeng/demo.txt
-rw-r--r--   3 jifeng        supergroup         24 2014-08-06 17:28 /user/jifeng/demo_c.txt
drwxr-xr-x   - jifeng        supergroup          0 2015-08-18 10:27 /user/jifeng/hbase
drwxr-xr-x   - jifeng        supergroup          0 2014-08-14 13:23 /user/jifeng/in
drwxr-xr-x   - jifeng        supergroup          0 2014-07-24 19:27 /user/jifeng/out
-rw-r--r--   1 jifeng        supergroup       1526 2014-08-06 11:36 /user/jifeng/session.log
drwxr-xr-x   - jifeng        supergroup          0 2014-08-26 18:11 /user/jifeng/testdata
[jifeng@jifeng01 hadoop-1.2.1]$ 

把测试的数据put到testdata目录

[jifeng@jifeng01 hadoop-1.2.1]$ bin/hadoop fs -put /home/jifeng/hadoop/synthetic_control.data ./testdata
Warning: $HADOOP_HOME is deprecated.

[jifeng@jifeng01 hadoop-1.2.1]$ bin/hadoop fs -ls ./testdata                                            
Warning: $HADOOP_HOME is deprecated.

Found 1 items
-rw-r--r--   1 jifeng supergroup     288374 2014-08-26 18:17 /user/jifeng/testdata/synthetic_control.data
[jifeng@jifeng01 hadoop-1.2.1]$ 


运行:mahout org.apache.mahout.clustering.syntheticcontrol.kmeans.Job

固化的测试命令


[jifeng@jifeng01 hadoop-1.2.1]$ cd ..
[jifeng@jifeng01 hadoop]$ mahout org.apache.mahout.clustering.syntheticcontrol.kmeans.Job
MAHOUT_LOCAL is not set; adding HADOOP_CONF_DIR to classpath.
Warning: $HADOOP_HOME is deprecated.

Running on hadoop, using /home/jifeng/hadoop/hadoop-1.2.1/bin/hadoop and HADOOP_CONF_DIR=/home/jifeng/hadoop/hadoop-1.2.1/conf
MAHOUT-JOB: /home/jifeng/hadoop/mahout-distribution-0.9/mahout-examples-0.9-job.jar
Warning: $HADOOP_HOME is deprecated.

14/08/26 18:22:37 WARN driver.MahoutDriver: No org.apache.mahout.clustering.syntheticcontrol.kmeans.Job.props found on classpath, will use command-line arguments only
14/08/26 18:22:37 INFO kmeans.Job: Running with default arguments
14/08/26 18:22:38 INFO kmeans.Job: Preparing Input
14/08/26 18:22:38 WARN mapred.JobClient: Use GenericOptionsParser for parsing the arguments. Applications should implement Tool for the same.
14/08/26 18:22:47 INFO input.FileInputFormat: Total input paths to process : 1
14/08/26 18:22:47 INFO util.NativeCodeLoader: Loaded the native-hadoop library
14/08/26 18:22:47 WARN snappy.LoadSnappy: Snappy native library not loaded
14/08/26 18:22:47 INFO mapred.JobClient: Running job: job_201408221126_0001
14/08/26 18:22:48 INFO mapred.JobClient:  map 0% reduce 0%
14/08/26 18:22:55 INFO mapred.JobClient:  map 100% reduce 0%
14/08/26 18:22:55 INFO mapred.JobClient: Job complete: job_201408221126_0001
......

最后结果,数据太多,只显示最后几行

        1.0 : [distance=36.3968678356675]: 60 = [28.487, 34.156, 28.659, 35.527, 35.250, 30.795, 31.318, 28.034, 25.375, 33.610, 29.723, 28.462, 24.683, 35.245, 34.151, 35.341, 27.724, 27.502, 28.539, 32.302, 30.586, 30.747, 28.180, 27.085, 35.723, 26.787, 29.890, 28.044, 27.663, 27.240, 25.005, 24.731, 32.778, 46.403, 47.259, 45.380, 45.677, 40.544, 39.214, 43.374, 42.056, 43.683, 42.560, 38.311, 44.878, 40.559, 46.917, 43.313, 38.759, 47.516, 38.562, 47.779, 36.325, 42.066, 44.773, 48.305, 47.137, 39.604, 37.563, 44.185]
14/08/26 18:26:31 INFO clustering.ClusterDumper: Wrote 6 clusters
14/08/26 18:26:31 INFO driver.MahoutDriver: Program took 234101 ms (Minutes: 3.901683333333333)

6:查看输出

[jifeng@jifeng01 hadoop]$ hadoop fs -ls ./output
Warning: $HADOOP_HOME is deprecated.

Found 15 items
-rw-r--r--   1 jifeng supergroup        194 2014-08-26 18:26 /user/jifeng/output/_policy
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:26 /user/jifeng/output/clusteredPoints
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/clusters-0
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:23 /user/jifeng/output/clusters-1
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:26 /user/jifeng/output/clusters-10-final
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:23 /user/jifeng/output/clusters-2
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:23 /user/jifeng/output/clusters-3
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:24 /user/jifeng/output/clusters-4
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:24 /user/jifeng/output/clusters-5
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:24 /user/jifeng/output/clusters-6
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:25 /user/jifeng/output/clusters-7
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:25 /user/jifeng/output/clusters-8
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:26 /user/jifeng/output/clusters-9
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/data
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/random-seeds
[jifeng@jifeng01 hadoop]$ hadoop fs -ls ./output/data
Warning: $HADOOP_HOME is deprecated.

Found 3 items
-rw-r--r--   1 jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/data/_SUCCESS
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/data/_logs
-rw-r--r--   1 jifeng supergroup     335470 2014-08-26 18:22 /user/jifeng/output/data/part-m-00000
[jifeng@jifeng01 hadoop]$ hadoop fs -ls ./output/clusters-1
Warning: $HADOOP_HOME is deprecated.

Found 4 items
-rw-r--r--   1 jifeng supergroup          0 2014-08-26 18:23 /user/jifeng/output/clusters-1/_SUCCESS
drwxrwxrwx   - jifeng supergroup          0 2014-08-26 18:22 /user/jifeng/output/clusters-1/_logs
-rw-r--r--   1 jifeng supergroup        194 2014-08-26 18:23 /user/jifeng/output/clusters-1/_policy
-rw-r--r--   1 jifeng supergroup       7581 2014-08-26 18:23 /user/jifeng/output/clusters-1/part-r-00000
[jifeng@jifeng01 hadoop]$ 

用cat查看数据是乱码,用mahout转换下

mahout vectordump -i ./output/data/part-m-00000

mahout0.8版本之前用这个mahout vectordump --seqFile /user/hadoop/output/data/part-m-00000查看

[jifeng@jifeng01 hadoop]$ mahout vectordump -i ./output/data/part-m-00000
MAHOUT_LOCAL is not set; adding HADOOP_CONF_DIR to classpath.
Warning: $HADOOP_HOME is deprecated.

Running on hadoop, using /home/jifeng/hadoop/hadoop-1.2.1/bin/hadoop and HADOOP_CONF_DIR=/home/jifeng/hadoop/hadoop-1.2.1/conf
MAHOUT-JOB: /home/jifeng/hadoop/mahout-distribution-0.9/mahout-examples-0.9-job.jar
Warning: $HADOOP_HOME is deprecated.

14/08/26 18:44:03 WARN driver.MahoutDriver: No vectordump.props found on classpath, will use command-line arguments only
14/08/26 18:44:03 INFO common.AbstractJob: Command line arguments: {--endPhase=[2147483647], --input=[./output/data/part-m-00000], --startPhase=[0], --tempDir=[temp]}
14/08/26 18:44:03 INFO vectors.VectorDumper: Sort? false
{0:28.7812,31:26.6311,34:29.1495,4:28.9207,32:35.6541,5:33.7596,8:35.2479,6:25.3969,30:25.0293,24:33.0292,29:34.9424,17:26.5235,51:24.5556,36:26.1927,12:36.0253,23:29.5054,58:25.4652,21:29.27,11:29.2171,10:32.8717,15:32.8717,7:27.7849,28:26.1203,46:28.0721,33:28.4353,55:34.9879,54:34.9318,25:25.04,3:31.2834,49:29.747,41:26.2353,1:34.4632,26:28.9167,44:31.0558,37:33.3182,56:32.4721,42:28.9964,27:24.3437,50:31.4333,16:34.1173,40:35.5344,48:35.4973,39:27.0443,9:27.1159,52:33.7431,13:32.337,43:32.0036,19:26.3693,59:25.8717,2:31.3381,20:25.7744,18:27.6623,22:30.7326,35:28.1584,57:33.3759,45:34.2553,38:30.9772,47:28.9402,14:34.5249,53:25.0466}
{0:24.8923,31:32.5981,34:26.9414,4:27.8789,32:28.3038,5:31.5926,8:27.9516,6:31.4861,30:34.0765,24:31.9874,29:25.0701,17:35.6273,51:31.0205,36:33.1089,12:27.4867,23:30.4719,58:32.1005,21:24.1311,11:31.1887,10:27.5415,15:24.488,7:35.5469,28:33.6472,46:26.3458,33:26.1471,55:26.4244,54:33.6564,25:33.6615,3:32.8217,49:29.4047,41:26.5301,1:25.741,26:25.5511,44:32.8357,37:24.1491,56:28.4661,42:24.8578,27:30.4686,50:32.5577,16:27.5918,40:35.9519,48:28.9861,39:25.7906,9:31.6595,52:26.6418,13:31.391,43:25.9562,19:31.4167,59:26.691,2:27.5532,20:30.7447,18:35.4102,22:35.1422,35:31.5203,57:34.2484,45:28.5322,38:28.5157,47:30.6213,14:27.811,53:28.4331}
{0:31.3987,31:24.246,34:31.6114,4:27.8613,32:26.9631,5:28.5491,8:25.2239,6:24.9717,30:27.3086,24:24.3323,29:28.8778,17:32.5614,51:26.5966,36:27.4809,12:28.2572,23:32.3851,58:29.5446,21:31.4781,11:27.2587,10:31.8387,15:35.0625,7:32.4358,28:31.5137,46:29.6082,33:25.2919,55:29.9897,54:25.5772,25:30.2001,3:24.2905,49:27.1717,41:31.0561,1:30.6316,26:31.2452,44:31.4391,37:24.2075,56:31.351,42:26.3583,27:26.6814,50:33.6318,16:31.5717,40:32.6293,48:34.1444,39:35.1253,9:27.3068,52:25.5387,13:26.5819,43:28.0861,19:34.1202,59:29.343,2:26.3983,20:26.9337,18:31.0308,22:35.0173,35:24.7131,57:33.9002,45:27.3057,38:26.8059,47:35.9725,14:24.0455,53:32.5434}
{0:25.774,31:28.3714,34:35.9346,4:27.97,32:32.3667,5:25.2702,8:31.4549,6:28.132,30:27.5587,24:29.2806,29:24.824,17:35.0966,51:28.7261,36:24.3749,12:29.9578,23:31.6264,58:27.3659,21:25.0102,11:28.9916,10:28.9564,15:24.3037,7:29.4268,28:25.5265,46:35.769,33:26.9752,55:32.5492,54:34.6156,25:34.2021,3:25.6033,49:31.156,41:26.8908,1:30.5262,26:26.5077,44:34.3336,37:27.6083,56:30.9827,42:31.3209,27:32.2279,50:34.6292,16:24.314,40:32.4185,48:34.2054,39:29.8557,9:27.32,52:28.2979,13:30.2773,43:29.3849,19:32.0968,59:25.3069,2:35.4209,20:33.3303,18:25.3679,22:35.3155,35:35.1146,57:24.8938,45:24.7381,38:27.8433,47:31.8725,14:30.4447,53:31.5787}
{0:27.1798,31:33.4129,34:29.6526,4:24.6555,32:26.9245,5:28.9446,8:24.5596,6:35.798,30:33.1247,24:24.6081,29:28.0295,17:31.1274,51:27.9601,36:24.5119,12:35.4154,23:33.0321,58:31.1057,21:31.6565,11:25.3216,10:27.9634,15:29.4686,7:34.9446,28:35.8773,46:29.1348,33:30.2123,55:29.9993,54:35.3375,25:33.2025,3:25.6264,49:34.9244,41:27.9072,1:29.2498,26:27.4335,44:33.833,37:33.9931,56:34.2149,42:35.111,27:32.6355,50:27.7218,16:33.1739,40:31.2651,48:32.3223,39:33.204,9:34.2366,52:35.7198,13:34.862,43:35.0757,19:26.5173,59:31.0179,2:33.6928,20:28.6486,18:31.3701,22:35.9497,35:30.8644,57:33.1276,45:25.9481,38:33.3094,47:24.2875,14:25.1472,53:27.576}
{0:25.5067,31:34.7268,34:35.9963,4:33.8,32:29.9207,5:27.6671,8:30.1171,6:30.6122,30:24.2361,24:35.7385,29:27.4559,17:33.901,51:35.8381,36:27.139,12:29.5582,23:27.7188,58:33.1669,21:26.496,11:27.8514,10:30.1524,15:26.1001,7:25.6393,28:27.3321,46:35.6706,33:27.273,55:25.2093,54:27.341,25:32.8309,3:34.4812,49:31.1795,41:25.8897,1:29.7929,26:30.1509,44:34.9652,37:26.4589,56:33.4669,42:31.3951,27:30.5593,50:26.9458,16:33.4677,40:27.9961,48:28.458,39:35.5002,9:26.5188,52:26.7134,13:32.3601,43:30.7583,19:34.8311,59:35.4907,2:28.0765,20:31.9815,18:29.2674,22:32.6645,35:32.3917,57:24.1094,45:28.0919,38:25.0466,47:33.4401,14:29.2064,53:25.1641}
{0:28.6989,31:35.4191,34:24.5244,4:31.4138,32:33.3472,5:28.4636,8:28.7669,6:35.9115,30:24.4462,24:29.5057,29:25.1053,17:24.553,51:24.0323,36:24.6889,12:29.1154,23:27.9928,58:29.6669,21:25.2126,11:33.7291,10:34.8983,15:31.6103,7:32.9058,28:34.0438,46:24.1047,33:32.2356,55:25.893,54:25.4358,25:31.0723,3:34.6229,49:24.0499,41:35.7727,1:29.2101,26:26.3605,44:32.7839,37:28.1962,56:35.6732,42:31.3444,27:27.7434,50:29.8274,16:33.3061,40:30.8005,48:28.8249,39:31.6316,9:24.2868,52:31.0756,13:26.2804,43:25.5691,19:27.8378,59:26.4637,2:30.9291,20:25.3525,18:29.1587,22:26.9565,35:29.4635,57:25.1869,45:32.7707,38:34.2994,47:34.006,14:33.4559,53:34.3358}
{0:30.9493,31:32.4431,34:29.2942,4:30.6691,32:30.0745,5:35.2667,8:28.8917,6:35.895,30:34.5734,24:28.8616,29:29.4617,17:25.2452,51:31.1248,36:28.4819,12:31.7516,23:32.626,58:31.3025,21:33.7765,11:26.0572,10:28.9898,15:24.1612,7:25.9022,28:34.8895,46:24.0331,33:25.0495,55:36.0187,54:35.9365,25:27.6223,3:34.8829,49:30.5934,41:33.0784,1:34.317,26:33.9381,44:24.4895,37:29.8917,56:26.3866,42:33.2286,27:33.9836,50:35.4341,16:26.6554,40:27.4442,48:34.8568,39:26.4574,9:32.2092,52:24.2424,13:32.294,43:27.5837,19:31.391,59:34.523,2:35.5674,20:32.1604,18:30.5956,22:31.1336,35:28.2689,57:33.1842,45:26.2151,38:33.1162,47:26.4765,14:31.0631,53:29.7172}
{0:35.2538,31:35.7172,34:25.2698,4:25.6518,32:27.1922,5:29.6442,8:28.9622,6:31.94,30:35.852,24:28.4948,29:29.8722,17:34.79,51:33.5455,36:24.3243,12:28.2109,23:30.4135,58:30.2372,21:26.4442,11:29.5098,10:29.7635,15:25.4274,7:35.9086,28:31.7032,46:31.9613,33:24.3206,55:28.3435,54:35.2296,25:28.8433,3:28.551,49:32.0285,41:32.857,1:34.6402,26:32.4284,44:27.3994,37:31.1824,56:26.5999,42:24.7469,27:24.5071,50:32.7486,16:32.3429,40:28.6468,48:24.8681,39:31.8824,9:24.6224,52:24.1792,13:34.2855,43:29.3045,19:25.3495,59:32.3833,2:35.7584,20:33.7603,18:33.7012,22:24.5097,35:29.6203,57:28.9487,45:26.1497,38:25.0701,47:34.7492,14:27.5473,53:25.398}
{0:29.1734,31:29.6383,34:24.3555,4:31.589,32:27.6021,5:35.1223,8:33.1096,6:28.6222,30:24.3243,24:31.3697,29:32.7152,17:33.9634,51:25.5129,36:27.5892,12:30.4642,23:35.6258,58:35.4543,21:32.9271,11:28.2495,10:29.7341,15:27.9832,7:34.3145,28:30.6996,46:28.3009,33:26.7215,55:24.0496,54:32.9789,25:26.8933,3:35.6177,49:33.7563,41:36.0073,1:31.5089,26:24.1528,44:31.7032,37:24.3209,56:32.8313,42:34.266,27:25.8813,50:35.6908,16:33.6256,40:35.3361,48:31.8163,39:25.127,9:35.6842,52:30.5505,13:24.7513,43:26.9172,19:24.4594,59:25.8732,2:33.1944,20:26.146,18:33.7699,22:27.3248,35:34.1569,57:29.2413,45:35.5142,38:32.5984,47:35.5839,14:26.3774,53:33.3061}
{0:35.2623,31:33.0465,34:28.1837,4:24.1366,32:29.1157,5:27.0766,8:24.7965,6:25.777,30:32.4622,24:26.8155,29:29.6243,17:33.0446,51:24.8259,36:28.3332,12:26.7417,23:34.6457,58:30.2934,21:24.4979,11:28.5484,10:33.3828,15:31.6716,7:33.1482,28:30.506,46:25.2243,33:26.2378,55:26.4082,54:31.5622,25:33.8731,3:30.2589,49:26.2298,41:32.1189,1:35.6805,26:26.529,44:27.5047,37:30.979,56:34.1331,42:24.5262,27:35.2714,50:30.5457,16:24.0114,40:27.1735,48:29.4958,39:24.2508,9:26.2804,52:29.9075,13:35.9152,43:30.8321,19:33.9432,59:29.4113,2:31.0851,20:31.3396,18:33.5631,22:31.7928,35:32.0623,57:28.1918,45:26.0098,38:33.2201,47:24.1142,14:30.3841,53:28.0949}
{0:26.7115,31:34.6508,34:34.3266,4:31.546,32:24.1421,5:33.7673,8:26.0583,6:26.7519,30:27.8587,24:25.607,29:26.7468,17:31.8647,51:28.1966,36:32.1332,12:33.0428,23:29.9277,58:24.769,21:28.8444,11:25.0704,10:33.7974,15:26.1295,7:28.7294,28:29.9563,46:35.2013,33:31.6518,55:30.7084,54:24.267,25:29.2266,3:29.9423,49:29.7925,41:25.3705,1:24.0969,26:35.8355,44:35.0871,37:32.3726,56:28.9351,42:30.0375,27:25.3635,50:32.4699,16:34.1154,40:27.6212,48:31.4061,39:33.8705,9:35.7051,52:31.9195,13:25.8115,43:31.0275,19:35.8575,59:33.8874,2:30.0213,20:28.5234,18:29.3071,22:29.064,35:25.0469,57:35.5112,45:32.3201,38:35.2883,47:28.5212,14:33.0476,53:35.4859}
{0:34.2296,31:32.171,34:33.8756,4:25.8677,32:25.1575,5:34.0545,8:26.8493,6:30.8923,30:30.0338,24:32.836,29:29.3717,17:33.363,51:30.0628,36:35.3339,12:31.6723,23:24.4726,58:32.3322,21:31.0771,11:32.8941,10:35.5939,15:27.3891,7:28.7287,28:26.6983,46:24.5134,33:30.7488,55:25.8394,54:24.3448,25:33.6076,3:26.9036,49:27.58,41:31.9654,1:32.8783,26:32.7391,44:25.2074,37:36.0081,56:30.8182,42:30.9023,27:28.5572,50:32.5904,16:32.38,40:30.0925,48:30.3896,39:29.1686,9:25.1119,52:35.5009,13:31.0947,43:31.138,19:35.9185,59:32.7611,2:24.2457,20:28.6512,18:28.6751,22:27.9359,35:26.0792,57:27.5833,45:34.7371,38:32.6829,47:25.3686,14:27.8547,53:33.8415}
{0:30.1451,31:24.4032,34:28.6064,4:35.4694,32:26.8338,5:33.4757,8:32.297,6:32.4387,30:34.3651,24:25.8827,29:26.6759,17:29.0625,51:32.3036,36:32.0895,12:26.5544,23:24.6595,58:35.3743,21:30.5328,11:28.461,10:31.9811,15:29.8039,7:35.9166,28:31.803,46:30.3716,33:24.2042,55:29.2762,54:26.7762,25:35.0801,3:26.3509,49:29.7731,41:27.6751,1:28.2025,26:33.7214,44:31.3844,37:34.9982,56:34.2656,42:24.4531,27:35.3324,50:32.3711,16:31.6951,40:32.9877,48:26.85,39:31.9532,9:29.0548,52:34.2564,13:29.6684,43:30.5809,19:26.0263,59:33.7996,2:26.5217,20:28.942,18:32.6965,22:27.3384,35:24.4451,57:30.6595,45:35.9449,38:29.0922,47:25.9569,14:33.8492,53:26.572}
{0:24.0543,31:28.0365,34:29.7356,4:28.7661,32:26.2937,5:32.5147,8:24.4333,6:29.9813,30:24.0308,24:34.8789,29:27.3516,17:25.2739,51:26.435,36:24.2515,12:29.9475,23:24.9544,58:33.8573,21:27.3762,11:33.7229,10:30.3602,15:29.3504,7:24.3169,28:35.3291,46:24.6077,33:29.5068,55:34.7463,54:27.2172,25:29.0019,3:28.5634,49:25.1564,41:34.6299,1:33.0039,26:30.0958,44:28.1261,37:31.0451,56:25.7472,42:28.1026,27:25.279,50:30.9944,16:30.0261,40:28.3086,48:26.3491,39:25.7112,9:34.1441,52:32.2903,13:33.1878,43:32.5555,19:24.5589,59:25.9962,2:35.4925,20:34.8932,18:27.8404,22:30.9548,35:30.0859,57:31.9507,45:33.7508,38:27.7229,47:32.5044,14:33.2168,53:35.3188}
{0:28.1944,31:28.5877,34:30.3804,4:27.5378,32:24.3926,5:28.0809,8:26.0439,6:32.55,30:31.9881,24:31.9826,29:34.4338,17:28.4272,51:32.142,36:35.2274,12:29.8171,23:28.2748,58:24.7752,21:31.882,11:30.2526,10:34.3255,15:27.6788,7:33.7445,28:32.2591,46:27.4526,33:33.4853,55:34.6641,54:24.051,25:29.8193,3:26.7178,49:27.1845,41:25.0998,1:30.7994,26:35.3445,44:33.486,37:33.4754,56:35.2538,42:29.5685,27:34.161,50:30.0683,16:32.85,40:35.2384,48:25.7553,39:28.1433,9:32.6774,52:35.4099,13:33.027,43:29.4128,19:25.5923,59:33.6604,2:33.901,20:30.614,18:28.5124,22:29.9064,35:28.3666,57:34.1011,45:30.7954,38:32.6928,47:26.2169,14:35.6129,53:34.595}
{0:26.0377,31:33.5528,34:34.0728,4:35.83,32:33.2326,5:26.7637,8:27.0971,6:30.3826,30:28.4973,24:27.6832,29:34.1595,17:34.284,51:29.3188,36:26.6576,12:29.2406,23:29.4304,58:30.9048,21:26.8294,11:33.8503,10:28.3222,15:28.5763,7:33.3847,28:31.7303,46:30.3125,33:34.4434,55:32.7134,54:31.7388,25:27.3296,3:26.0755,49:30.6632,41:35.9725,1:28.3229,26:34.3358,44:33.9649,37:24.9265,56:24.8413,42:26.9969,27:34.0192,50:29.7037,16:26.1684,40:35.4073,48:25.1766,39:32.0219,9:31.2636,52:24.8644,13:30.9709,43:31.1964,19:31.1575,59:34.6861,2:27.8169,20:24.9529,18:35.7172,22:29.8303,35:31.4131,57:33.0736,45:35.7227,38:30.1381,47:35.0085,14:32.7149,53:35.0739}
{0:35.4815,31:28.8422,34:35.1609,4:26.2202,32:24.8527,5:30.3771,8:33.5999,6:24.7539,30:29.4014,24:32.3197,29:31.5706,17:35.6915,51:35.9423,36:31.9015,12:26.6106,23:27.4486,58:26.5412,21:24.0253,11:28.4412,10:29.2619,15:32.4765,7:29.3497,28:26.6161,46:26.4905,33:32.1468,55:28.1588,54:31.4013,25:34.4349,3:36.0264,49:26.0858,41:27.2686,1:26.8952,26:31.084,44:33.7192,37:34.6938,56:30.4594,42:30.7532,27:35.0607,50:32.1405,16:27.569,40:33.5929,48:24.6856,39:24.5652,9:29.1047,52:35.0853,13:30.9188,43:28.6854,19:33.789,59:31.4222,2:34.7511,20:30.1495,18:24.3268,22:24.21,35:33.1173,57:30.368,45:28.3729,38:31.391,47:33.8158,14:33.6436,53:35.3845}
{0:27.0997,31:30.661,34:33.4577,4:26.6983,32:26.7773,5:32.5261,8:35.4374,6:24.7359,30:32.2026,24:28.3413,29:27.2003,17:33.4618,51:24.556,36:32.1493,12:28.0144,23:30.3081,58:35.1066,21:25.0521,11:29.6368,10:34.7507,15:28.6442,7:30.7745,28:26.8654,46:33.6601,33:34.4753,55:31.6727,54:31.2221,25:30.4774,3:28.5932,49:32.1343,41:34.8333,1:31.5199,26:24.7113,44:30.6511,37:33.5822,56:28.7342,42:25.0007,27:29.9247,50:26.9671,16:35.9721,40:28.382,48:31.0337,39:24.7936,9:34.7526,52:29.7037,13:30.3254,43:28.9384,19:27.2025,59:27.0854,2:30.8038,20:28.2906,18:29.2663,22:26.3884,35:29.8766,57:28.0614,45:36.0228,38:25.9345,47:26.0887,14:28.9633,53:25.5431}
{0:29.4965,31:33.9094,34:27.099,4:32.5261,32:34.6538,5:34.8466,8:32.7123,6:33.0777,30:30.7572,24:32.6517,29:27.717,17:28.9453,51:25.9477,36:33.5495,12:32.7483,23:33.6575,58:29.7426,21:27.2598,11:24.8846,10:28.5014,15:26.7732,7:24.4932,28:25.3734,46:34.0086,33:35.2325,55:34.0872,54:30.2361,25:31.4156,3:31.4876,49:28.6505,41:30.2163,1:28.1316,26:26.0443,44:28.8091,37:31.9312,56:29.2068,42:25.5655,27:32.6352,50:34.2759,16:31.6,40:32.3032,48:33.3667,39:24.173,9:27.7038,52:34.2359,13:32.0719,43:30.6033,19:32.7016,59:27.6759,2:29.4459,20:34.9938,18:33.93,22:26.0245,35:34.4929,57:33.3659,45:28.4926,38:34.7779,47:35.3423,14:25.7744,53:26.5977}
{0:25.7946,31:25.188,34:29.8689,4:26.9818,32:31.8923,5:25.3804,8:25.4443,6:25.3411,30:28.4882,24:33.5694,29:32.9954,17:31.0077,51:28.5719,36:27.6002,12:35.2149,23:33.3039,58:32.0906,21:29.5002,11:24.4778,10:29.0078,15:31.3536,7:30.1135,28:35.8814,46:28.7188,33:31.9371,55:35.9945,54:34.0335,25:30.762,3:24.43,49:27.352,41:25.8412,1:33.9116,26:28.736,44:34.0813,37:34.4885,56:32.1629,42:27.6505,27:25.3543,50:35.4062,16:27.2958,40:34.2649,48:33.2998,39:34.7342,9:29.9155,52:27.1919,13:31.2526,43:28.8646,19:26.6106,59:26.8977,2:25.3323,20:26.8004,18:31.9731,22:30.553,35:28.7089,57:33.2212,45:31.8497,38:27.7361,47:30.452,14:25.672,53:24.7289}
{0:33.4655,31:29.9548,34:32.8974,4:27.8881,32:27.1915,5:24.0044,8:33.9381,6:28.7063,30:24.1693,24:26.1424,29:32.334,17:31.9158,51:34.328,36:28.4621,12:32.294,23:28.9843,58:28.3508,21:34.2153,11:30.5196,10:29.198,15:24.6221,7:24.5398,28:35.5773,46:24.4146,33:26.0546,55:35.5362,54:24.2347,25:30.5093,3:35.4448,49:30.2325,41:31.0088,1:30.7767,26:35.3082,44:34.3056,37:29.2479,56:27.6615,42:28.0262,27:29.1583,50:24.043,16:33.9476,40:31.7682,48:28.2003,39:33.7122,9:25.1457,52:35.9552,13:33.6718,43:25.5805,19:33.0957,59:33.8789,2:35.9042,20:34.2384,18:25.9536,22:33.3465,35:34.5006,57:25.7862,45:24.1263,38:27.6164,47:31.0014,14:27.9241,53:25.0429}
{0:31.7006,31:24.9889,34:29.1752,4:34.7008,32:26.8456,5:29.0794,8:30.6202,6:27.8264,30:34.5873,24:26.6194,29:24.4755,17:32.9781,51:35.6835,36:25.878,12:31.3047,23:31.0741,58:25.618,21:24.452,11:25.7469,10:29.74,15:29.9086,7:24.3558,28:24.1028,46:27.8995,33:26.3598,55:34.1705,54:30.2692,25:26.301,3:33.6582,49:28.6898,41:35.8425,1:31.3466,26:27.9443,44:31.1057,37:24.9063,56:24.8597,42:35.5854,27:27.7137,50:31.3914,16:25.3668,40:25.7289,48:33.0365,39:32.958,9:35.5902,52:35.4587,13:24.4429,43:26.193,19:27.0182,59:28.9975,2:34.3405,20:34.6685,18:33.1408,22:33.0362,35:33.0053,57:33.2455,45:24.8163,38:32.4332,47:31.3091,14:25.9044,53:35.1657}
{0:32.2613,31:34.6666,34:32.8324,4:33.7185,32:33.2088,5:30.3973,8:31.1498,6:32.7784,30:31.8651,24:25.0859,29:33.9865,17:26.3036,51:34.0824,36:35.3181,12:35.6122,23:27.7409,58:24.0132,21:32.7457,11:29.9681,10:25.7447,15:32.3987,7:30.8898,28:31.6308,46:35.2806,33:33.9847,55:29.9614,54:24.8211,25:33.7034,3:27.3329,49:33.9843,41:25.8133,1:27.3329,26:32.5603,44:28.3225,37:25.2713,56:34.541,42:26.2724,27:32.2691,50:33.302,16:30.1043,40:33.186,48:27.6105,39:26.0689,9:33.562,52:35.8403,13:27.7049,43:35.0607,19:31.5008,59:27.9344,2:30.694,20:31.102,18:30.4311,22:29.9218,35:31.5364,57:26.3667,45:25.7983,38:30.5226,47:25.5409,14:30.9959,53:35.4191}
{0:30.2137,31:25.611,34:31.1252,4:32.4596,32:34.3482,5:30.8967,8:33.0696,6:24.4473,30:28.2153,24:33.8239,29:30.3624,17:25.5662,51:33.0949,36:35.9038,12:27.0663,23:32.4993,58:35.0915,21:27.7431,11:25.1968,10:29.2145,15:33.6906,7:30.105,28:35.0243,46:31.6426,33:29.8454,55:34.111,54:32.1295,25:31.8706,3:35.8645,49:27.341,41:35.4852,1:33.5576,26:33.6138,44:32.312,37:27.4732,56:30.0488,42:33.0288,27:28.8818,50:26.2551,16:26.4361,40:34.7904,48:34.8565,39:29.4584,9:33.782,52:29.2971,13:31.463,43:30.7906,19:30.7936,59:30.9676,2:34.5969,20:35.343,18:29.0188,22:27.6663,35:31.6297,57:34.1841,45:31.0554,38:28.4687,47:25.2269,14:31.8449,53:34.4702}
{0:34.2127,31:26.5162,34:29.7077,4:28.0684,32:28.1257,5:25.6268,8:25.7417,6:28.1628,30:29.4811,24:33.9766,29:35.2648,17:28.0706,51:29.9905,36:25.8655,12:30.6239,23:25.2794,58:30.3287,21:24.3096,11:25.8618,10:35.1106,15:29.1991,7:28.8987,28:35.906,46:35.4958,33:27.2378,55:32.1453,54:26.1122,25:31.7935,3:31.6246,49:24.8626,41:27.5264,1:25.669,26:32.5812,44:29.14,37:28.566,56:26.1299,42:25.9386,27:24.0907,50:35.6879,16:32.7211,40:32.6818,48:24.5009,39:30.4715,9:31.9892,52:25.8949,13:26.8584,43:29.4951,19:34.9835,59:25.5908,2:24.0059,20:28.7801,18:30.2629,22:26.3704,35:30.1135,57:32.3139,45:33.334,38:29.7903,47:26.7002,14:31.4748,53:26.5808}
{0:33.0777,31:27.5448,34:32.8706,4:25.1916,32:33.7056,5:24.8237,8:24.5578,6:30.9287,30:30.0635,24:26.2158,29:35.4697,17:25.0675,51:35.4429,36:34.2142,12:27.6428,23:27.2896,58:34.4048,21:34.689,11:35.0103,10:25.423,15:28.3512,7:31.1634,28:31.0117,46:35.7,33:29.79,55:33.7699,54:31.5695,25:25.0862,3:25.7531,49:25.2346,41:26.7876,1:32.9058,26:31.629,44:30.0521,37:31.1215,56:24.1168,42:25.9099,27:26.2209,50:30.7076,16:33.2672,40:27.3568,48:28.2612,39:34.7067,9:27.15,52:29.0485,13:32.1376,43:25.0102,19:25.4355,59:24.0316,2:26.4093,20:28.3012,18:29.3361,22:35.2178,35:34.7691,57:27.6781,45:26.6473,38:28.6942,47:24.3375,14:34.0346,53:33.5808}
{0:26.1229,31:25.9327,34:35.0842,4:32.2584,32:25.4377,5:33.4875,8:28.2759,6:29.162,30:35.3236,24:24.0779,29:35.0643,17:26.8529,51:24.7264,36:29.5968,12:31.8324,23:26.5261,58:30.4972,21:25.8005,11:30.5229,10:27.414,15:26.9602,7:31.4509,28:32.3976,46:35.5832,33:29.7709,55:24.5159,54:29.4995,25:32.5401,3:32.7989,49:35.3886,41:30.7561,1:27.5393,26:30.845,44:29.9152,37:32.3917,56:35.1671,42:34.8815,27:34.1345,50:26.0957,16:35.6475,40:28.9655,48:28.5091,39:25.6488,9:33.6307,52:36.0319,13:25.7421,43:34.3376,19:33.273,59:26.9994,2:27.8286,20:29.8359,18:34.6861,22:30.6239,35:34.0475,57:29.4073,45:27.1662,38:29.0467,47:27.1151,14:27.4353,53:35.6522}
{0:34.1522,31:24.8945,34:33.999,4:31.2739,32:30.8986,5:26.1861,8:32.9737,6:30.5754,30:31.3639,24:27.2165,29:32.9286,17:27.0667,51:30.6048,36:34.2928,12:34.183,23:30.3099,58:24.6559,21:29.6959,11:35.1106,10:31.6227,15:27.6579,7:25.8647,28:24.3044,46:27.8929,33:31.3293,55:35.3849,54:31.6503,25:32.4655,3:28.143,49:26.3403,41:29.9321,1:28.7753,26:25.1156,44:30.1704,37:35.7775,56:26.2478,42:33.356,27:27.042,50:32.7931,16:31.9606,40:31.9694,48:30.6503,39:28.7698,9:31.8166,52:34.5623,13:31.8078,43:25.3139,19:31.6584,59:27.5973,2:32.6374,20:29.1921,18:29.2406,22:32.482,35:34.779,57:34.9039,45:32.9341,38:32.5312,47:29.9699,14:26.1758,53:34.2197}
{0:26.0528,31:27.5712,34:32.9433,4:30.5483,32:27.2187,5:34.0332,8:25.5313,6:32.3961,30:32.6704,24:29.8278,29:30.4205,17:29.1554,51:28.584,36:35.3724,12:34.5888,23:33.8984,58:32.7398,21:30.7715,11:29.0651,10:26.4655,15:29.7999,7:33.7864,28:26.2779,46:31.0627,33:29.1088,55:35.3148,54:33.6384,25:24.1447,3:30.1965,49:26.3976,41:32.456,1:26.6546,26:28.8561,44:31.1641,37:33.0828,56:24.6393,42:25.3429,27:27.1933,50:29.4679,16:27.6123,40:32.5011,48:25.5372,39:33.0417,9:28.2777,52:32.6877,13:29.7962,43:26.9646,19:26.5408,59:30.9551,2:25.6327,20:25.0594,18:33.9127,22:31.8963,35:35.129,57:33.6931,45:27.323,38:30.217,47:29.8395,14:28.0802,53:26.9664}
{0:26.8518,31:25.6396,34:31.0312,4:27.0174,32:33.9068,5:33.6189,8:29.9684,6:28.1863,30:31.2588,24:29.296,29:35.7933,17:35.3471,51:29.2836,36:25.0411,12:34.9586,23:25.127,58:24.1359,21:29.4576,11:24.2515,10:27.2179,15:24.5626,7:33.7959,28:29.0236,46:34.5058,33:35.1062,55:31.1432,54:31.2632,25:30.4869,3:24.2167,49:35.4932,41:29.4429,1:35.4224,26:30.4436,44:25.0682,37:32.3858,56:33.1364,42:32.5562,27:24.4917,50:25.481,16:30.4528,40:29.3919,48:35.5715,39:34.2142,9:29.5619,52:32.857,13:27.8213,43:31.0855,19:26.6348,59:35.064,2:27.0112,20:35.3809,18:30.8729,22:27.2403,35:34.7169,57:25.6833,45:28.8543,38:25.7358,47:25.8343,14:33.4783,53:29.9717}
{0:29.3166,31:24.3312,34:29.0904,4:35.7062,32:24.264,5:31.5904,8:33.2899,6:29.3508,30:25.9404,24:30.1546,29:25.8611,17:24.8406,51:28.5994,36:26.9065,12:31.0256,23:30.7153,58:30.9526,21:26.3065,11:34.2484,10:31.3183,15:24.9445,7:36.0195,28:32.7549,46:31.5445,33:24.0532,55:31.7549,54:25.9404,25:30.4814,3:28.194,49:28.0042,41:36.0143,1:26.3116,26:24.889,44:26.6113,37:31.8813,56:27.8055,42:29.9772,27:27.3876,50:26.8595,16:31.4707,40:28.042,48:35.0496,39:25.0014,9:28.5142,52:35.5314,13:31.5537,43:33.6428,19:24.6015,59:32.5944,2:27.7893,20:31.9635,18:27.4768,22:34.2902,35:33.3806,57:32.3994,45:27.5778,38:28.0247,47:33.258,14:28.6898,53:35.288}
{0:35.1227,31:31.2787,34:25.4604,4:25.0212,32:29.5373,5:34.6611,8:32.6227,6:33.2738,30:27.5411,24:32.4707,29:36.0107,17:26.1196,51:25.8574,36:31.0848,12:34.0827,23:35.4102,58:35.7554,21:25.3752,11:30.5027,10:30.4755,15:34.0222,7:25.8082,28:26.7171,46:35.8197,33:34.5906,55:32.4629,54:35.4235,25:34.6611,3:29.6882,49:28.6391,41:24.1528,1:25.1472,26:26.6043,44:28.4423,37:26.5514,56:27.4019,42:25.4604,27:29.0919,50:35.7609,16:26.3168,40:24.1965,48:34.6688,39:28.0659,9:35.8406,52:31.3525,13:31.6694,43:29.0948,19:31.1876,59:27.312,2:32.417,20:29.0985,18:30.3481,22:26.4402,35:24.228,57:25.6033,45:27.233,38:29.8013,47:26.8581,14:34.2069,53:26.9212}
{0:28.1731,31:26.8647,34:29.8612,4:35.7554,32:33.8341,5:34.0295,8:30.2963,6:32.4651,30:26.1703,24:35.8564,29:26.2147,17:33.331,51:25.3521,36:31.7935,12:27.4948,23:32.2881,58:27.0365,21:29.4521,11:28.5223,10:35.5854,15:29.3115,7:25.0392,28:31.3393,46:31.1645,33:31.7795,55:25.2651,54:35.7338,25:29.4488,3:33.9017,49:35.3952,41:26.7663,1:28.4389,26:30.2982,44:26.6454,37:32.2569,56:24.9985,42:34.8245,27:33.1335,50:27.3994,16:24.625,40:34.938,48:24.4792,39:33.0417,9:27.1779,52:31.1204,13:30.5229,43:29.4606,19:29.5685,59:28.6115,2:32.2253,20:26.4883,18:30.0125,22:31.7465,35:28.7386,57:28.6369,45:33.3788,38:30.0613,47:35.5509,14:35.2035,53:27.7622}
{0:25.5897,31:24.0,34:33.2936,4:33.7019,32:33.9516,5:30.8997,8:26.1273,6:32.7549,30:32.9631,24:24.1373,29:31.0686,17:28.0703,51:26.9084,36:30.1895,12:33.6024,23:35.3875,58:28.0086,21:29.7624,11:32.9855,10:28.346,15:35.0434,7:30.0114,28:29.6757,46:27.5448,33:32.9543,55:34.6009,54:30.968,25:27.6615,3:24.0632,49:26.8676,41:24.5244,1:35.4172,26:26.4218,44:27.2918,37:33.6054,56:35.6365,42:34.7841,27:35.6019,50:34.9134,16:24.2012,40:33.6245,48:29.1073,39:29.7558,9:30.9206,52:32.4402,13:26.4475,43:29.5505,19:24.0084,59:29.8116,2:28.1573,20:30.2288,18:30.303,22:29.9457,35:35.1499,57:26.0983,45:26.225,38:32.5309,47:27.2477,14:27.1335,53:35.707}
{0:33.0274,31:30.4355,34:34.3651,4:26.4512,32:30.6037,5:27.5253,8:26.084,6:30.5251,30:25.961,24:34.0897,29:24.9078,17:24.9728,51:29.1591,36:27.6395,12:27.4137,23:24.2064,58:30.6621,21:34.898,11:33.9208,10:24.1979,15:35.3133,7:24.0995,28:29.9097,46:28.6538,33:30.2574,55:27.8206,54:32.5008,25:35.2766,3:26.2819,49:32.4714,41:27.222,1:30.1664,26:27.1673,44:35.1481,37:32.7171,56:26.496,42:30.2156,27:35.8979,50:33.4614,16:29.4165,40:24.5494,48:29.6981,39:34.9813,9:34.5403,52:32.4516,13:24.4924,43:26.2694,19:26.0296,59:29.9978,2:34.7195,20:32.6359,18:30.4091,22:32.6249,35:32.287,57:33.4559,45:35.1062,38:30.2306,47:34.6475,14:30.1421,53:26.077}
{0:25.7733,31:33.5672,34:35.9332,4:30.3624,32:24.3702,5:34.5414,8:32.3609,6:25.3106,30:32.8882,24:32.6109,29:34.1029,17:29.4341,51:27.1107,36:28.6049,12:29.126,23:24.2537,58:25.7358,21:33.3064,11:35.53,10:28.1239,15:28.5436,7:28.6931,28:25.4204,46:35.6291,33:31.3675,55:24.8773,54:35.9585,25:27.3406,3:31.8126,49:33.5672,41:33.4236,1:30.8156,26:28.938,44:31.6969,37:33.056,56:31.5306,42:29.3195,27:33.5003,50:30.777,16:30.7076,40:29.8186,48:30.4645,39:28.1239,9:30.9063,52:33.6256,13:28.1037,43:25.4428,19:31.8578,59:32.8584,2:27.1798,20:30.2655,18:29.8865,22:25.788,35:24.1454,57:34.4143,45:28.4463,38:28.4173,47:28.2675,14:28.2943,53:35.0012}
{0:34.9666,31:25.4042,34:28.2359,4:33.2348,32:35.5491,5:31.0326,8:34.042,6:29.7922,30:24.0599,24:30.6261,29:35.8792,17:30.4146,51:27.6887,36:30.1972,12:27.6425,23:28.4709,58:24.437,21:30.3514,11:33.049,10:31.8306,15:24.3467,7:29.599,28:34.02,46:24.8494,33:28.5219,55:27.8327,54:30.1785,25:31.918,3:29.0522,49:35.0456,41:27.4544,1:27.9138,26:35.7617,44:27.8209,37:27.1342,56:24.5262,42:27.0813,27:34.4404,50:31.4042,16:24.5207,40:31.694,48:24.2989,39:30.1039,9:26.7446,52:31.7252,13:32.4222,43:35.7874,19:26.8768,59:34.1679,2:28.6666,20:33.1177,18:24.6672,22:25.6283,35:24.8464,57:29.3243,45:24.9438,38:31.8269,47:35.6996,14:24.267,53:31.5879}
{0:27.2146,31:31.2306,34:28.8249,4:32.0237,32:28.7085,5:24.368,8:35.577,6:33.1845,30:28.6732,24:25.7373,29:31.3598,17:24.9518,51:28.7368,36:29.6225,12:31.0231,23:35.8997,58:33.9322,21:30.2156,11:27.5191,10:26.3755,15:30.5365,7:31.2232,28:30.9922,46:24.271,33:24.8145,55:34.5216,54:30.2556,25:29.8997,3:30.5769,49:27.2315,41:34.4173,1:25.2048,26:33.4662,44:29.8348,37:26.8298,56:33.0307,42:31.2441,27:24.9882,50:29.1587,16:26.7027,40:27.955,48:27.0288,39:24.2365,9:33.9179,52:29.1712,13:33.8731,43:31.6011,19:34.757,59:27.6248,2:34.4779,20:24.0422,18:28.2847,22:35.0562,35:27.5797,57:34.8322,45:31.5262,38:24.4208,47:25.4072,14:33.1504,53:26.738}
{0:29.9681,31:27.2616,34:27.0138,4:26.3895,32:25.8401,5:25.9224,8:33.9535,6:24.4374,30:27.3839,24:33.4486,29:24.7194,17:28.8767,51:33.2936,36:26.5705,12:28.4044,23:32.7538,58:26.8474,21:31.4571,11:29.9537,10:34.3684,15:35.9365,7:27.5797,28:29.7418,46:33.7387,33:24.1348,55:33.7199,54:24.5038,25:34.2987,3:34.6798,49:33.2609,41:31.3055,1:29.0023,26:27.052,44:28.2902,37:24.629,56:31.0139,42:26.637,27:32.5107,50:31.9485,16:26.3113,40:26.9352,48:31.0425,39:25.5732,9:34.1235,52:26.807,13:28.5891,43:28.1889,19:30.3911,59:28.6718,2:30.4124,20:25.8993,18:26.1919,22:31.4579,35:31.3811,57:25.3561,45:33.3109,38:36.0184,47:29.9765,14:25.5071,53:30.1572}
{0:34.4988,31:35.7224,34:35.5131,4:35.4036,32:24.1902,5:29.5457,8:29.9247,6:31.253,30:34.4272,24:27.605,29:31.4065,17:34.2487,51:32.5867,36:27.6972,12:26.9609,23:35.8333,58:35.256,21:26.8202,11:24.4543,10:27.5069,15:24.7032,7:34.1459,28:28.4154,46:34.0622,33:29.498,55:29.5759,54:31.9936,25:32.7832,3:35.3471,49:33.9909,41:35.722,1:30.9151,26:31.084,44:28.7338,37:32.8287,56:32.5382,42:32.4082,27:26.4449,50:32.8478,16:25.3719,40:31.4839,48:35.8325,39:33.5999,9:33.9583,52:25.2809,13:26.3689,43:35.0129,19:35.1337,59:25.6668,2:31.0631,20:30.9291,18:29.7492,22:25.9257,35:35.1271,57:29.6082,45:26.1798,38:35.2252,47:27.1379,14:28.3868,53:26.6664}
{0:32.5771,31:29.9552,34:24.7723,4:30.2299,32:26.7332,5:25.5001,8:32.3014,6:28.645,30:30.4767,24:25.8163,29:27.8261,17:24.4421,51:29.5678,36:30.2585,12:32.6734,23:35.4749,58:24.336,21:27.981,11:34.2814,10:34.4088,15:27.8048,7:29.7775,28:28.1779,46:34.8455,33:28.3314,55:28.7375,54:28.1246,25:24.7183,3:32.1611,49:25.7652,41:25.878,1:34.6846,26:29.2733,44:29.2773,37:28.8425,56:32.5973,42:27.6667,27:32.0329,50:27.8239,16:27.3325,40:31.04,48:30.2464,39:30.3702,9:32.4824,52:25.1296,13:28.6545,43:30.5773,19:32.9811,59:26.4978,2:33.8951,20:34.1176,18:29.4591,22:35.6467,35:34.4658,57:35.8322,45:28.4107,38:31.8368,47:29.4128,14:33.4629,53:28.5844}
{0:31.5544,31:34.2429,34:26.933,4:30.5938,32:29.9916,5:28.4246,8:32.3752,6:34.0302,30:27.1386,24:32.1971,29:25.6033,17:31.4681,51:24.4014,36:28.1441,12:30.1796,23:30.1803,58:25.1395,21:33.6303,11:31.8086,10:27.7354,15:30.7859,7:24.8949,28:34.0288,46:32.8467,33:33.5308,55:25.9136,54:31.1656,25:28.9879,3:33.7431,49:27.1599,41:25.4083,1:27.4875,26:33.7284,44:24.329,37:25.8486,56:24.8766,42:32.4541,27:29.2751,50:30.0984,16:35.5054,40:27.0061,48:35.8612,39:35.7205,9:30.2677,52:32.7189,13:33.3237,43:24.8593,19:26.1857,59:25.7858,2:31.6382,20:33.3061,18:26.0652,22:33.7541,35:27.3266,57:27.2675,45:25.868,38:31.8596,47:33.0538,14:29.2799,53:26.3249}
{0:30.9239,31:26.8985,34:28.4768,4:29.238,32:24.473,5:31.716,8:27.8136,6:25.9889,30:32.5724,24:25.069,29:26.3873,17:33.5965,51:33.7203,36:29.4025,12:35.0353,23:26.2015,58:25.2155,21:33.7739,11:28.895,10:27.9344,15:32.2518,7:32.966,28:27.2488,46:35.4143,33:26.4901,55:29.5913,54:35.0184,25:29.1396,3:30.2883,49:25.3018,41:30.7502,1:30.6985,26:31.4244,44:35.6082,37:24.726,56:31.3807,42:35.3129,27:33.8099,50:25.1241,16:32.5401,40:26.373,48:26.1078,39:32.6844,9:34.4254,52:25.0308,13:26.8162,43:28.4169,19:25.3741,59:24.6592,2:26.955,20:33.2734,18:35.35,22:31.1898,35:27.6336,57:30.1388,45:27.8676,38:35.8002,47:24.4469,14:35.4084,53:26.3535}
{0:33.6876,31:31.2963,34:34.7408,4:28.2744,32:32.9271,5:35.3555,8:24.9537,6:27.7467,30:30.6727,24:26.8471,29:28.2906,17:26.8258,51:28.9681,36:32.2375,12:33.0028,23:25.7792,58:24.34,21:28.8128,11:28.4356,10:24.6305,15:24.0665,7:29.1253,28:24.9243,46:32.8059,33:27.3479,55:31.2845,54:33.0068,25:32.9631,3:25.0712,49:26.843,41:30.3904,1:34.2003,26:32.597,44:33.1937,37:30.4109,56:24.73,42:30.3092,27:28.4393,50:32.7505,16:26.2951,40:28.7852,48:35.1249,39:27.4577,9:32.164,52:24.8365,13:26.3888,43:30.0701,19:27.934,59:24.5115,2:35.4782,20:24.8354,18:28.656,22:29.9864,35:32.6928,57:26.3906,45:31.7792,38:24.1921,47:31.5691,14:34.3391,53:34.732}
{0:27.4772,31:27.4702,34:33.6843,4:32.1262,32:25.0939,5:35.4932,8:26.6469,6:28.6123,30:32.0961,24:34.6332,29:32.4438,17:32.1644,51:34.1066,36:32.8041,12:24.0841,23:33.7324,58:30.8542,21:35.9603,11:29.2373,10:32.6572,15:31.2684,7:33.9491,28:35.1455,46:25.8067,33:30.3551,55:32.2415,54:34.5447,25:32.5331,3:28.2722,49:35.7268,41:34.3802,1:33.4699,26:32.6723,44:24.4965,37:33.0215,56:27.0252,42:35.2718,27:33.7166,50:28.028,16:24.8453,40:26.2294,48:30.2989,39:32.9565,9:31.777,52:34.6982,13:24.719,43:30.9184,19:32.4314,59:30.4697,2:33.2165,20:24.3209,18:29.859,22:26.5849,35:28.1158,57:34.6281,45:25.3528,38:24.7455,47:33.6087,14:27.8683,53:31.0073}
{0:32.8206,31:32.8518,34:25.4803,4:28.2708,32:34.9725,5:26.5647,8:30.8391,6:24.264,30:32.8085,24:29.231,29:28.2348,17:35.35,51:27.3421,36:35.8472,12:34.0548,23:33.8951,58:32.8298,21:25.4538,11:29.6937,10:28.161,15:30.8351,7:33.204,28:35.3526,46:28.555,33:29.6071,55:30.9772,54:30.6856,25:29.8013,3:30.8083,49:26.5584,41:26.5092,1:33.6873,26:30.2526,44:29.5039,37:28.5877,56:25.4208,42:29.2141,27:34.4404,50:31.6231,16:25.9944,40:28.5017,48:30.943,39:35.7606,9:35.306,52:29.4628,13:32.0193,43:32.0373,19:34.5315,59:34.1037,2:26.948,20:24.1403,18:29.9912,22:33.226,35:35.9152,57:30.9827,45:29.3974,38:24.5953,47:29.2024,14:29.5832,53:31.3363}
{0:33.1673,31:32.9025,34:25.8119,4:29.1135,32:30.4954,5:24.5773,8:35.0063,6:29.6107,30:34.7004,24:33.6373,29:26.0461,17:30.0896,51:31.546,36:33.2139,12:34.4555,23:25.275,58:32.4354,21:35.8788,11:29.8891,10:33.6344,15:31.694,7:28.0108,28:35.126,46:32.6594,33:29.4793,55:25.3954,54:27.0061,25:34.1062,3:29.9838,49:24.5104,41:34.2924,1:35.5424,26:33.0887,44:27.6575,37:27.8606,56:24.4102,42:29.6574,27:26.413,50:25.0286,16:28.4305,40:25.3396,48:35.0338,39:24.2787,9:29.7525,52:32.4494,13:31.7817,43:35.6405,19:28.1143,59:35.1771,2:35.1414,20:24.0338,18:24.47,22:31.3047,35:24.9012,57:25.3995,45:33.0296,38:26.5926,47:28.2671,14:27.6612,53:32.9029}
{0:28.468,31:25.9903,34:28.9531,4:25.7072,32:30.0907,5:29.978,8:35.5369,6:32.2606,30:24.1113,24:29.6001,29:31.8236,17:29.0808,51:25.9933,36:29.5803,12:30.8806,23:33.3193,58:33.3193,21:26.0116,11:25.7318,10:25.1123,15:26.8122,7:34.551,28:26.0035,46:33.0072,33:24.3415,55:29.1363,54:27.6303,25:28.2091,3:28.3725,49:35.6842,41:24.596,1:35.4415,26:26.0983,44:27.9072,37:31.7773,56:31.3885,42:31.2254,27:32.6649,50:25.6092,16:29.5564,40:30.7392,48:31.8938,39:29.6295,9:29.5424,52:29.7756,13:33.28,43:29.2476,19:29.2564,59:35.8762,2:25.6554,20:29.8208,18:26.6667,22:29.281,35:25.9455,57:25.2317,45:28.6923,38:25.149,47:27.215,14:30.4227,53:34.7841}
{0:26.9161,31:31.719,34:31.0422,4:34.9325,32:28.0552,5:35.0063,8:29.2039,6:29.1201,30:26.7097,24:28.1907,29:32.2933,17:33.4107,51:27.9935,36:32.2915,12:31.9026,23:29.7374,58:33.2815,21:25.3459,11:30.8446,10:26.6535,15:27.5664,7:26.9172,28:24.0099,46:29.1561,33:34.4224,55:35.5803,54:28.6754,25:25.8251,3:29.6203,49:35.1238,41:24.6235,1:30.7253,26:25.896,44:34.4349,37:30.3525,56:30.7682,42:26.2371,27:28.6123,50:24.7965,16:29.1719,40:24.0756,48:35.7709,39:28.4467,9:28.4874,52:24.7825,13:24.9162,43:24.6863,19:26.4405,59:31.2093,2:30.9511,20:32.8045,18:25.839,22:30.7473,35:30.582,57:33.168,45:35.2534,38:32.1174,47:33.3597,14:24.2879,53:35.6251}
{0:24.1182,31:26.2371,34:27.4291,4:30.7051,32:30.6944,5:30.0393,8:29.8909,6:29.9221,30:26.2768,24:30.78,29:29.5535,17:29.1477,51:25.1696,36:24.4921,12:26.102,23:25.2254,58:32.3866,21:32.424,11:35.5894,10:29.2402,15:35.6225,7:27.3035,28:31.5537,46:30.5097,33:25.9698,55:25.4017,54:25.2618,25:24.7374,3:24.7781,49:33.1588,41:31.6925,1:26.5063,26:27.4232,44:35.5329,37:27.6369,56:32.0109,42:33.2179,27:34.4764,50:28.2105,16:28.104,40:29.8135,48:33.1368,39:32.1269,9:26.3168,52:35.1348,13:35.6063,43:25.1993,19:31.0947,59:25.2768,2:29.8101,20:25.1094,18:31.9551,22:25.0771,35:27.5363,57:27.9865,45:27.5954,38:24.48,47:29.837,14:28.779,53:34.8095}
{0:24.9684,31:26.7633,34:24.3371,4:25.0455,32:29.8751,5:29.6056,8:35.5186,6:25.8089,30:34.2976,24:31.972,29:25.3987,17:25.788,51:34.7643,36:30.9698,12:28.5017,23:27.8789,58:24.5545,21:30.6037,11:35.2072,10:27.0218,15:30.1586,7:24.2743,28:28.1132,46:27.2958,33:31.2037,55:35.3478,54:30.1987,25:26.583,3:28.9516,49:30.1869,41:27.2844,1:34.7265,26:27.3153,44:28.7907,37:29.191,56:30.2534,42:29.1723,27:25.6349,50:33.3843,16:28.9281,40:30.0969,48:31.355,39:31.2342,9:24.1171,52:33.7317,13:24.0613,43:28.5803,19:35.5586,59:24.9166,2:32.8871,20:28.02,18:31.0451,22:34.8822,35:32.4225,57:27.0204,45:34.0258,38:28.5609,47:31.0811,14:30.0815,53:33.753}
{0:25.1186,31:24.1193,34:26.8581,4:29.4147,32:35.4503,5:24.4418,8:30.5266,6:35.4011,30:25.7134,24:29.5112,29:30.2009,17:24.8791,51:30.8857,36:31.1689,12:35.0816,23:35.3772,58:30.9129,21:27.6344,11:24.4238,10:24.6298,15:30.2284,7:31.6,28:32.9554,46:27.7511,33:31.4891,55:35.1671,54:24.2611,25:35.7,3:29.5138,49:24.9673,41:31.8288,1:25.954,26:25.8545,44:29.57,37:30.7998,56:25.0561,42:24.3944,27:27.5319,50:27.4419,16:27.8742,40:24.2009,48:29.3401,39:35.3467,9:33.4251,52:33.0927,13:31.784,43:35.8792,19:28.5102,59:28.3824,2:33.2881,20:32.1585,18:29.6934,22:31.878,35:32.0039,57:34.4265,45:31.1318,38:32.0392,47:35.9471,14:25.94,53:27.9098}
{0:31.3965,31:33.6487,34:31.4828,4:29.7929,32:29.3052,5:24.6621,8:31.0635,6:33.9414,30:27.739,24:24.2545,29:32.803,17:29.7492,51:28.1169,36:33.3549,12:30.903,23:30.4789,58:34.6563,21:31.4263,11:30.3408,10:31.7281,15:33.3351,7:28.5726,28:24.4227,46:27.2686,33:27.5073,55:27.457,54:28.6971,25:27.6322,3:25.9966,49:30.9298,41:34.3813,1:29.0775,26:35.7191,44:27.8033,37:29.1194,56:32.2154,42:31.2629,27:33.7849,50:32.9315,16:29.1356,40:25.3998,48:25.6613,39:33.4886,9:29.4117,52:25.5633,13:30.8439,43:29.205,19:31.3804,59:32.7611,2:30.8773,20:31.1343,18:24.3503,22:32.142,35:35.1804,57:34.3247,45:29.769,38:34.7404,47:28.5219,14:35.6023,53:34.2465}
{0:26.0285,31:35.5065,34:33.3208,4:30.7851,32:34.682,5:28.2194,8:29.606,6:34.3831,30:28.9611,24:35.3912,29:30.3169,17:32.7901,51:26.2951,36:28.2836,12:34.9211,23:27.5936,58:32.1189,21:24.8053,11:32.8177,10:30.8916,15:34.4103,7:34.118,28:35.7918,46:33.9707,33:28.3288,55:33.1272,54:27.345,25:28.3082,3:34.9435,49:24.9162,41:34.4823,1:26.5547,26:35.4763,44:32.6146,37:32.8151,56:29.6104,42:33.432,27:29.8843,50:31.4722,16:34.5645,40:32.4736,48:29.1091,39:31.203,9:25.2629,52:27.1368,13:34.6189,43:32.5562,19:29.0335,59:29.6555,2:32.1637,20:35.4719,18:25.9419,22:25.9422,35:31.7762,57:25.412,45:29.9387,38:25.7509,47:26.2411,14:30.8226,53:24.4458}
{0:26.2081,31:26.5621,34:28.0783,4:25.4861,32:31.1648,5:31.5948,8:26.6568,6:29.7437,30:31.7292,24:29.7657,29:30.2145,17:31.0613,51:32.684,36:28.0677,12:26.1794,23:31.6606,58:35.7393,21:32.1427,11:24.6746,10:31.2408,15:34.5638,7:31.553,28:31.7373,46:28.5028,33:34.208,55:28.2821,54:25.2779,25:29.7606,3:35.2788,49:35.5454,41:30.3544,1:32.9091,26:28.389,44:25.4035,37:34.7103,56:24.7131,42:31.7612,27:25.8486,50:34.0761,16:27.9432,40:31.1365,48:30.7455,39:25.51,9:29.7341,52:33.5007,13:34.9237,43:26.6873,19:34.9953,59:24.8674,2:29.9049,20:31.8519,18:35.6225,22:29.0449,35:27.2157,57:27.497,45:33.688,38:29.368,47:24.5306,14:26.7005,53:25.1898}
{0:35.5825,31:27.1085,34:30.9834,4:30.6059,32:29.3151,5:25.1913,8:30.3147,6:29.4896,30:35.3805,24:31.1556,29:27.341,17:30.7308,51:34.8176,36:28.9171,12:35.2979,23:29.299,58:27.0402,21:27.7879,11:24.8145,10:25.463,15:27.208,7:32.402,28:29.8079,46:30.6415,33:33.7838,55:24.6786,54:31.5082,25:27.7974,3:28.2917,49:30.8964,41:34.2968,1:28.194,26:24.1583,44:33.0927,37:31.8082,56:28.3097,42:32.7321,27:31.2743,50:31.5398,16:27.1518,40:26.507,48:34.8238,39:25.6697,9:28.8884,52:27.8062,13:32.893,43:24.4627,19:32.1427,59:27.5499,2:32.7483,20:27.1695,18:29.9464,22:31.0154,35:26.3634,57:32.4945,45:34.4382,38:31.4968,47:30.1182,14:35.6695,53:27.1581}
{0:27.1566,31:35.9835,34:32.5573,4:31.564,32:35.3405,5:30.2067,8:30.8604,6:31.6433,30:32.6462,24:31.5893,29:24.6658,17:30.9507,51:31.9301,36:31.2507,12:29.3508,23:29.902,58:32.2129,21:31.8849,11:31.8636,10:34.844,15:27.3487,7:32.2257,28:34.8488,46:30.1807,33:30.3555,55:34.6732,54:24.0459,25:27.8305,3:31.3756,49:29.296,41:33.6704,1:25.8174,26:31.9731,44:33.8778,37:29.6394,56:25.795,42:31.6249,27:32.5746,50:33.6028,16:30.8802,40:29.5417,48:35.3978,39:29.1245,9:30.748,52:29.2652,13:27.8598,43:29.5762,19:29.1451,59:32.5195,2:28.7136,20:34.1444,18:31.8045,22:31.1582,35:26.3205,57:34.8837,45:27.4886,38:25.2713,47:32.2298,14:27.1471,53:24.2512}
{0:30.9518,31:29.9919,34:33.7559,4:25.1843,32:27.2561,5:35.2237,8:35.7224,6:31.0154,30:35.4158,24:30.7293,29:28.2036,17:31.9173,51:34.3571,36:28.0548,12:30.4741,23:35.9611,58:29.6416,21:35.2119,11:32.2683,10:35.8777,15:35.379,7:26.5408,28:34.1749,46:26.8885,33:33.6762,55:28.5741,54:33.8055,25:27.5051,3:35.2149,49:32.7347,41:26.4527,1:30.6834,26:26.8808,44:27.5158,37:33.5624,56:31.4072,42:24.6753,27:26.1728,50:26.5323,16:29.4804,40:34.6527,48:36.0088,39:24.448,9:25.0811,52:33.2807,13:27.0409,43:28.6641,19:33.7265,59:25.438,2:25.0323,20:29.6908,18:24.5732,22:33.8654,35:35.8465,57:29.9449,45:32.297,38:35.642,47:31.6257,14:29.3522,53:29.2413}
{0:32.7251,31:25.3036,34:32.2485,4:28.7592,32:33.9164,5:33.6939,8:27.562,6:25.5757,30:31.709,24:29.9662,29:24.7587,17:33.6476,51:30.5255,36:34.8176,12:24.1087,23:32.503,58:30.4271,21:26.4185,11:26.3678,10:25.2765,15:25.2471,7:32.3113,28:30.5615,46:33.2613,33:31.9397,55:34.4415,54:32.6216,25:26.8988,3:32.3513,49:26.2074,41:25.705,1:34.6791,26:25.9878,44:30.6144,37:35.6746,56:27.9876,42:30.2747,27:35.0831,50:33.7618,16:26.9322,40:31.7586,48:35.3658,39:26.9385,9:29.4172,52:24.7444,13:24.4976,43:28.4716,19:26.6146,59:34.551,2:24.087,20:31.5735,18:26.4813,22:25.5677,35:24.7708,57:30.5372,45:26.8801,38:24.7847,47:24.8174,14:34.476,53:26.3678}
{0:33.847,31:31.9867,34:30.155,4:26.529,32:29.2454,5:32.5849,8:27.114,6:25.109,30:34.4235,24:30.4829,29:29.3486,17:34.1206,51:35.4701,36:35.8193,12:25.0065,23:31.3514,58:29.1995,21:28.0288,11:29.9552,10:28.9766,15:28.812,7:30.4028,28:35.9611,46:32.1783,33:24.798,55:30.9996,54:26.6047,25:26.8045,3:26.5008,49:27.5606,41:29.5564,1:34.0879,26:31.9393,44:28.1437,37:24.0206,56:34.0449,42:33.1126,27:30.2813,50:25.0128,16:26.9231,40:29.8234,48:28.2781,39:26.1479,9:25.3793,52:35.5362,13:24.2152,43:35.4176,19:26.0384,59:30.0613,2:29.8307,20:35.769,18:34.5124,22:33.6806,35:25.6249,57:26.8379,45:25.6084,38:31.4259,47:27.3215,14:24.2115,53:31.9705}
{0:26.7799,31:27.6498,34:31.2761,4:35.1976,32:33.8793,5:28.8073,8:27.2536,6:24.166,30:27.4489,24:30.4043,29:30.4667,17:29.4176,51:27.9777,36:28.4033,12:25.3811,23:31.4696,58:33.9248,21:29.5307,11:26.8852,10:35.209,15:33.2466,7:27.168,28:27.078,46:31.9709,33:35.816,55:24.3577,54:28.0611,25:29.7624,3:34.2792,49:34.0475,41:31.5442,1:35.4628,26:28.3185,44:26.6811,37:34.7907,56:28.5197,42:35.8854,27:33.2561,50:26.9936,16:26.2841,40:26.8401,48:28.9846,39:31.4854,9:28.624,52:30.769,13:31.7105,43:25.3095,19:25.8126,59:31.7557,2:28.6615,20:32.25,18:34.5186,22:25.0117,35:26.1317,57:24.04,45:32.2668,38:24.7807,47:33.2925,14:29.523,53:31.1501}
{0:31.6892,31:34.0446,34:25.9389,4:30.9041,32:28.2451,5:28.2487,8:28.0559,6:27.6865,30:29.8781,24:34.1907,29:28.3431,17:24.5075,51:34.6879,36:27.9748,12:24.8637,23:27.3571,58:28.4232,21:24.7422,11:34.7963,10:30.2512,15:28.0269,7:30.2262,28:26.3726,46:30.5156,33:28.7794,55:31.4042,54:30.4429,25:28.4261,3:24.813,49:30.668,41:31.8225,1:34.544,26:25.0807,44:24.018,37:33.5396,56:35.1969,42:24.1641,27:32.3513,50:24.6731,16:28.9431,40:35.6735,48:33.7805,39:35.0265,9:24.2791,52:28.0067,13:28.8366,43:29.1829,19:29.2362,59:33.432,2:27.1012,20:34.1448,18:27.5213,22:32.8136,35:31.2126,57:34.2873,45:27.4599,38:30.7638,47:31.492,14:24.2336,53:33.7489}
{0:32.8603,31:25.5111,34:27.7592,4:27.5719,32:33.1922,5:31.8365,8:35.5883,6:31.1443,30:35.7771,24:33.2885,29:30.4531,17:33.2462,51:35.8821,36:34.8539,12:35.1014,23:35.0562,58:28.1665,21:29.7407,11:30.8762,10:32.6958,15:26.6587,7:28.3082,28:32.8625,46:30.867,33:31.3143,55:35.6791,54:32.5827,25:32.0223,3:25.4839,49:26.8324,41:27.8077,1:31.0176,26:25.7942,44:28.6108,37:31.1674,56:24.9511,42:29.0559,27:25.3852,50:30.2864,16:27.3729,40:28.5179,48:26.3418,39:29.5233,9:35.2406,52:29.4293,13:24.6632,43:34.0651,19:34.0387,59:32.5474,2:30.0819,20:25.1321,18:28.2116,22:29.2931,35:29.415,57:25.488,45:35.0948,38:35.2355,47:35.0988,14:35.6063,53:29.6717}
{0:32.6543,31:29.8851,34:28.0758,4:24.9853,32:34.3993,5:27.3564,8:25.5702,6:31.55,30:26.175,24:31.3635,29:30.9761,17:28.1029,51:35.5311,36:30.2989,12:30.0455,23:27.0832,58:34.9475,21:35.8597,11:32.1108,10:28.0971,15:26.6642,7:34.9586,28:26.4648,46:28.338,33:29.2432,55:35.6831,54:32.12,25:31.264,3:26.4292,49:33.7258,41:29.0052,1:27.5954,26:35.1444,44:27.7298,37:28.1712,56:34.0512,42:33.0821,27:25.7248,50:29.4018,16:24.8652,40:29.7242,48:26.8871,39:33.117,9:31.1472,52:26.785,13:28.6354,43:29.187,19:34.1775,59:26.3249,2:30.1649,20:24.7466,18:33.7684,22:29.0228,35:25.8254,57:28.1738,45:29.9244,38:29.4128,47:28.7232,14:30.8336,53:26.6767}
{0:25.5757,31:30.4076,34:28.6215,4:32.2834,32:34.4731,5:31.7799,8:35.4701,6:31.3348,30:27.3303,24:24.9985,29:30.9808,17:34.7794,51:30.4935,36:26.8856,12:35.5792,23:34.6262,58:26.9205,21:26.7251,11:28.8043,10:24.7223,15:33.7989,7:33.2675,28:34.9688,46:27.3053,33:31.4031,55:34.8271,54:34.3626,25:24.668,3:32.3715,49:33.1445,41:26.4578,1:28.0897,26:26.5966,44:25.7586,37:24.444,56:24.3367,42:24.2391,27:31.4377,50:24.7792,16:33.5712,40:27.2113,48:35.8807,39:30.1215,9:29.6254,52:32.1236,13:26.8599,43:28.8161,19:26.0737,59:34.1151,2:35.8873,20:32.059,18:27.2943,22:24.2912,35:32.7949,57:30.0246,45:31.7175,38:27.1008,47:30.7906,14:34.8109,53:34.8837}
{0:25.9529,31:29.2645,34:30.2233,4:29.6225,32:29.2979,5:30.2967,8:25.1773,6:27.2128,30:26.879,24:25.2148,29:29.7767,17:31.4068,51:28.9053,36:35.9974,12:28.71,23:31.5732,58:30.2622,21:25.8691,11:29.7161,10:35.9996,15:29.794,7:25.8232,28:30.1263,46:31.7212,33:24.7785,55:32.8184,54:32.5988,25:30.7065,3:26.7663,49:30.6786,41:33.7523,1:31.0859,26:24.7774,44:27.4309,37:25.0554,56:27.8925,42:27.8929,27:35.3614,50:31.7476,16:25.3774,40:28.4889,48:29.8436,39:32.0708,9:25.4296,52:33.1581,13:24.3114,43:29.2101,19:24.936,59:31.3194,2:29.0647,20:35.3776,18:26.0208,22:33.2877,35:24.1223,57:27.6869,45:27.7016,38:33.8147,47:30.2611,14:26.0737,53:24.7065}
{0:24.0033,31:25.6888,34:29.7995,4:25.5585,32:24.0786,5:25.2702,8:30.816,6:30.2809,30:34.7805,24:30.694,29:32.1736,17:27.9829,51:33.1511,36:25.7487,12:32.511,23:27.1673,58:35.9324,21:27.1379,11:25.8996,10:29.8986,15:33.6601,7:27.0619,28:27.0108,46:31.5096,33:27.1434,55:24.119,54:30.1689,25:28.2506,3:28.3809,49:27.414,41:33.7651,1:33.8918,26:29.9423,44:27.2932,37:26.594,56:29.8329,42:24.3867,27:27.5808,50:29.227,16:35.2806,40:27.7706,48:28.443,39:24.0015,9:26.8684,52:30.8149,13:29.2505,43:31.6841,19:30.6191,59:35.158,2:35.6757,20:28.9248,18:34.0288,22:30.6107,35:32.8074,57:33.9649,45:32.7494,38:26.0788,47:31.9518,14:30.1752,53:35.3129}
{0:27.8485,31:28.5965,34:35.8043,4:24.7737,32:30.0448,5:29.2762,8:35.2417,6:25.2236,30:28.4683,24:26.0337,29:26.1537,17:33.865,51:29.1569,36:32.9187,12:28.8976,23:29.9868,58:24.379,21:27.1261,11:35.3199,10:35.8935,15:27.547,7:33.7335,28:32.7986,46:25.0851,33:29.2696,55:27.1691,54:24.206,25:26.4861,3:29.3548,49:27.0997,41:32.3142,1:31.337,26:35.3489,44:24.5754,37:34.8411,56:35.5593,42:27.2356,27:32.0553,50:32.9921,16:33.3443,40:29.7037,48:29.4326,39:24.2291,9:27.6718,52:33.7493,13:30.6129,43:29.1282,19:32.9018,59:35.068,2:31.6955,20:31.6095,18:29.9603,22:28.9641,35:24.9985,57:24.9621,45:25.2173,38:29.2714,47:29.5902,14:29.585,53:27.1221}
{0:30.1583,31:25.1465,34:34.06,4:27.5969,32:24.8879,5:34.9523,8:31.654,6:35.2068,30:33.0207,24:24.2071,29:35.8671,17:24.2563,51:29.7613,36:32.9293,12:27.2929,23:33.2932,58:30.1256,21:35.9122,11:35.3434,10:28.5851,15:29.5663,7:27.2653,28:26.5981,46:27.9829,33:33.8914,55:29.6857,54:33.3983,25:26.2771,3:30.9548,49:33.2789,41:28.8275,1:24.0914,26:33.3703,44:28.4944,37:26.1548,56:28.8025,42:25.2239,27:32.6212,50:30.5751,16:29.6254,40:28.5616,48:35.1782,39:34.6299,9:25.2272,52:35.0247,13:25.1531,43:27.807,19:31.7296,59:32.0799,2:24.9331,20:24.7862,18:29.9618,22:33.4049,35:31.0723,57:34.3706,45:31.8097,38:27.4027,47:32.5705,14:25.1501,53:28.4834}
{0:32.9132,31:25.196,34:34.4599,4:32.3722,32:34.4959,5:24.4403,8:28.7592,6:31.8684,30:27.6245,24:34.0288,29:35.9886,17:34.6593,51:33.4107,36:32.2735,12:31.6003,23:33.3942,58:27.7688,21:32.6407,11:29.3985,10:31.3257,15:24.397,7:31.7013,28:25.5996,46:35.6361,33:31.6143,55:30.1524,54:29.5054,25:26.0149,3:26.2415,49:33.0005,41:33.005,1:33.1166,26:32.5408,44:25.0381,37:35.6941,56:26.1376,42:27.1783,27:34.6703,50:28.6259,16:28.1525,40:28.2619,48:27.5036,39:25.4424,9:33.6678,52:26.2298,13:24.7756,43:25.8394,19:29.942,59:24.3489,2:34.2373,20:32.7413,18:31.4476,22:28.7026,35:34.1029,57:30.5314,45:27.1753,38:33.8613,47:25.7032,14:24.6316,53:25.6341}
{0:29.137,31:30.8516,34:34.2168,4:29.7628,32:30.264,5:27.0854,8:28.6953,6:25.4542,30:25.4182,24:31.9694,29:24.8788,17:24.9368,51:30.1616,36:35.5557,12:26.9403,23:26.5055,58:28.5737,21:31.0194,11:30.8409,10:34.8587,15:34.0857,7:28.3097,28:34.1154,46:34.6846,33:24.697,55:24.7164,54:35.4866,25:26.4582,3:25.5331,49:29.9082,41:33.8411,1:26.6212,26:29.4965,44:26.6891,37:32.1769,56:30.5622,42:33.0659,27:33.5047,50:24.3386,16:29.6188,40:26.1181,48:30.3628,39:32.4376,9:34.2829,52:26.0965,13:28.635,43:32.2242,19:34.1966,59:34.7353,2:30.3698,20:34.1775,18:34.3504,22:34.0332,35:24.4689,57:24.1168,45:29.9144,38:32.4519,47:24.0334,14:28.6299,53:25.7579}
{0:26.9546,31:27.0075,34:28.136,4:32.2382,32:28.1716,5:35.4833,8:26.9774,6:26.3715,30:30.018,24:35.7084,29:30.5512,17:27.0226,51:24.5347,36:26.6609,12:29.3981,23:31.8629,58:24.8046,21:28.743,11:29.8263,10:29.9218,15:27.8327,7:27.2943,28:27.052,46:30.8523,33:35.1591,55:35.3779,54:33.3759,25:31.1784,3:34.0401,49:27.0597,41:25.9217,1:32.8911,26:30.2042,44:31.734,37:27.0207,56:29.6552,42:25.7983,27:27.3652,50:31.4255,16:35.7955,40:33.6549,48:32.8401,39:29.1469,9:28.3255,52:34.4999,13:34.8414,43:35.7793,19:33.6417,59:29.6368,2:29.1943,20:24.6992,18:29.6813,22:24.5806,35:33.7056,57:30.0345,45:24.5956,38:33.5238,47:29.8193,14:30.0727,53:31.0334}
{0:26.8592,31:34.6126,34:33.9557,4:31.5768,32:35.78,5:29.194,8:29.5751,6:32.716,30:35.3078,24:33.88,29:34.0321,17:25.387,51:26.7123,36:25.34,12:31.4432,23:26.3983,58:26.579,21:29.9816,11:27.0454,10:25.5816,15:25.3631,7:25.5038,28:29.1029,46:31.3492,33:27.6458,55:28.6828,54:28.9879,25:33.2091,3:29.4323,49:34.3038,41:35.4628,1:32.5099,26:28.342,44:26.655,37:29.429,56:33.4306,42:36.0037,27:26.6322,50:32.4134,16:26.7013,40:33.3336,48:32.3168,39:25.0187,9:26.3862,52:33.2958,13:28.2116,43:31.9209,19:28.1525,59:29.5303,2:28.4617,20:26.8632,18:31.7292,22:31.0249,35:26.8999,57:30.5736,45:31.2974,38:26.7097,47:29.6743,14:25.3837,53:28.5998}
{0:25.5115,31:33.7578,34:34.6075,4:35.9203,32:28.7669,5:24.5156,8:28.089,6:35.8678,30:24.5064,24:25.831,29:29.3342,17:24.1351,51:29.7518,36:33.8283,12:30.6654,23:31.2599,58:32.9411,21:35.2736,11:31.6661,10:27.3586,15:32.5191,7:30.2486,28:32.0847,46:34.0651,33:32.4589,55:25.3705,54:24.8942,25:32.6473,3:29.2057,49:24.6375,41:34.4103,1:35.7011,26:35.223,44:26.709,37:30.5497,56:32.6858,42:25.2059,27:28.736,50:35.8737,16:31.9966,40:28.7456,48:30.4667,39:28.129,9:31.1197,52:29.1121,13:30.9397,43:28.692,19:27.5404,59:31.8012,2:26.9682,20:30.8751,18:31.6995,22:35.9978,35:32.2903,57:32.6789,45:24.4767,38:26.9506,47:31.4986,14:29.4334,53:35.1624}
{0:29.1525,31:26.9532,34:34.0611,4:31.0811,32:24.3195,5:26.6117,8:24.3955,6:30.2497,30:26.7872,24:34.1404,29:24.1381,17:26.6054,51:32.6036,36:31.0583,12:34.6574,23:30.9291,58:25.5214,21:31.5372,11:35.1389,10:27.4067,15:31.3047,7:34.5396,28:28.3049,46:33.7067,33:26.1659,55:33.5907,54:32.1563,25:27.674,3:30.8802,49:34.6971,41:34.0229,1:34.5697,26:33.0307,44:35.4984,37:25.3543,56:29.382,42:24.7249,27:30.5982,50:26.1335,16:26.9785,40:26.9554,48:25.3308,39:34.5227,9:27.9832,52:30.9188,13:32.2999,43:31.6576,19:33.3979,59:34.2781,2:33.9597,20:35.5237,18:33.3439,22:26.6124,35:26.3763,57:29.451,45:34.7096,38:31.4178,47:26.5114,14:32.229,53:24.3911}
{0:29.624,31:25.6264,34:32.3454,4:29.6802,32:35.9056,5:31.0117,8:33.6961,6:31.3818,30:31.0301,24:30.8615,29:31.9415,17:32.3822,51:30.3456,36:33.6395,12:25.1178,23:25.3811,58:31.0315,21:32.9605,11:26.6726,10:28.938,15:24.0095,7:27.6054,28:34.7346,46:24.9529,33:35.6886,55:33.9432,54:28.6843,25:35.7756,3:35.2292,49:32.9822,41:29.6633,1:31.4233,26:29.9816,44:26.9356,37:26.7365,56:31.8886,42:35.0691,27:24.0841,50:32.2118,16:27.3344,40:26.3179,48:24.6577,39:31.7737,9:28.7364,52:29.6926,13:28.6475,43:25.3521,19:33.2804,59:32.7538,2:30.806,20:28.0324,18:24.3187,22:26.7141,35:25.3976,57:30.9581,45:26.8074,38:35.8781,47:32.4336,14:33.8433,53:28.5443}
{0:34.3725,31:25.6422,34:32.1817,4:28.7393,32:24.8788,5:35.0096,8:24.9779,6:28.1529,30:31.5842,24:25.2963,29:28.2252,17:30.2916,51:31.4197,36:32.2059,12:26.7057,23:28.4033,58:28.1092,21:24.9966,11:25.9345,10:24.791,15:28.754,7:34.2899,28:24.8956,46:24.8083,33:35.3151,55:34.0133,54:30.8038,25:27.4669,3:31.8372,49:27.7284,41:28.0611,1:25.4659,26:29.0269,44:34.9681,37:32.3509,56:34.2708,42:26.8783,27:34.2498,50:31.3235,16:28.8036,40:28.9516,48:27.4937,39:34.4342,9:25.94,52:29.4319,13:25.929,43:35.1205,19:30.9151,59:28.2083,2:33.4724,20:24.2864,18:31.7931,22:34.768,35:33.8536,57:34.6204,45:32.2485,38:24.3771,47:30.9357,14:35.3717,53:25.8673}
{0:31.2375,31:31.6378,34:27.2124,4:27.2793,32:30.5288,5:25.4872,8:28.6461,6:29.8751,30:29.6827,24:25.6316,29:29.7015,17:32.1262,51:35.3162,36:26.8761,12:35.093,23:35.7606,58:33.5481,21:30.6834,11:30.3228,10:24.5343,15:26.0788,7:26.5316,28:28.2877,46:34.0655,33:30.3437,55:35.5972,54:29.4774,25:33.8576,3:24.8204,49:25.9881,41:33.3263,1:26.6877,26:28.5355,44:33.3112,37:31.0495,56:28.8811,42:29.5094,27:25.5339,50:34.0324,16:33.5407,40:30.86,48:35.3173,39:30.6731,9:35.5648,52:28.3717,13:31.4105,43:34.3442,19:33.8507,59:25.3176,2:25.2845,20:32.1864,18:31.8071,22:27.9535,35:24.1579,57:28.0537,45:33.1713,38:32.655,47:27.6032,14:26.1497,53:25.5284}
{0:27.5264,31:27.5158,34:24.0988,4:32.8434,32:28.476,5:24.0132,8:33.414,6:25.7494,30:24.7282,24:25.9823,29:28.5297,17:29.3978,51:30.491,36:30.5809,12:33.9737,23:29.0133,58:35.137,21:31.1821,11:32.8621,10:25.9404,15:30.6845,7:25.4197,28:25.47,46:32.2551,33:29.1587,55:28.5521,54:29.9559,25:33.6065,3:26.1398,49:27.0498,41:30.4495,1:27.3788,26:35.0397,44:27.4732,37:33.5051,56:35.3269,42:34.635,27:24.4689,50:30.2949,16:25.9239,40:32.9473,48:27.6582,39:26.2353,9:25.7773,52:35.7554,13:31.2317,43:33.5943,19:34.2667,59:33.8955,2:28.8502,20:35.5178,18:29.371,22:30.5824,35:31.2937,57:26.9998,45:27.7332,38:30.7098,47:35.4921,14:25.521,53:33.8444}
{0:32.1468,31:25.0778,34:24.4036,4:28.0023,32:35.953,5:35.4213,8:34.5675,6:29.3328,30:35.6835,24:32.0021,29:24.795,17:26.1706,51:30.1932,36:35.3794,12:35.9728,23:26.6429,58:33.9421,21:31.9584,11:32.1306,10:25.2111,15:35.2468,7:32.4607,28:30.9911,46:34.2917,33:32.7262,55:34.9707,54:30.5376,25:25.0007,3:34.176,49:34.7731,41:35.1014,1:24.148,26:25.9867,44:29.2971,37:33.3832,56:26.623,42:25.8361,27:31.3741,50:35.1756,16:31.3029,40:25.922,48:35.7003,39:28.916,9:29.3508,52:35.0485,13:28.6167,43:32.4618,19:24.6812,59:30.7847,2:26.4615,20:29.5513,18:30.6661,22:34.3842,35:31.1766,57:24.6301,45:26.7692,38:25.7417,47:30.0433,14:26.8617,53:24.7609}
{0:24.0353,31:27.9843,34:30.5663,4:30.3224,32:25.8963,5:28.8385,8:24.159,6:25.6429,30:30.3584,24:35.9394,29:33.5349,17:30.2684,51:25.4961,36:27.1151,12:28.255,23:31.7021,58:31.7142,21:30.5578,11:33.8463,10:33.999,15:24.4829,7:24.325,28:28.3758,46:26.4343,33:32.0994,55:28.8109,54:34.8165,25:33.0986,3:33.2954,49:31.3139,41:31.8691,1:32.9179,26:35.1029,44:35.4708,37:28.0457,56:24.3885,42:30.029,27:33.5022,50:33.8106,16:24.1686,40:28.4338,48:32.2118,39:27.3266,9:33.2011,52:27.0799,13:31.066,43:26.2209,19:24.1204,59:26.2125,2:33.9436,20:25.2629,18:31.8166,22:33.5069,35:35.5424,57:35.353,45:26.5074,38:34.6358,47:25.376,14:34.5039,53:31.5313}
{0:28.3438,31:30.9897,34:25.954,4:24.3209,32:24.0037,5:26.0087,8:32.5503,6:29.5858,30:31.456,24:26.5008,29:32.8426,17:35.5759,51:29.6309,36:31.4975,12:34.5399,23:32.0337,58:33.739,21:33.0116,11:25.683,10:29.1411,15:35.0203,7:34.7603,28:29.0364,46:26.3609,33:34.6222,55:31.445,54:29.3603,25:24.4873,3:32.0722,49:29.1796,41:26.1681,1:33.3391,26:33.5962,44:29.1903,37:29.2204,56:27.3002,42:32.4167,27:29.0206,50:28.2968,16:35.8329,40:35.1734,48:36.0308,39:35.769,9:26.7314,52:27.8962,13:25.2541,43:24.8262,19:24.1219,59:35.6941,2:25.2386,20:29.3287,18:34.3798,22:33.9663,35:35.9769,57:25.1758,45:32.1607,38:26.3866,47:30.9404,14:29.241,53:25.3051}
{0:30.7668,31:36.0261,34:29.3897,4:31.2577,32:34.9061,5:28.7849,8:35.9247,6:25.2093,30:24.4715,24:28.6339,29:30.1682,17:34.1661,51:32.7571,36:24.2684,12:29.9225,23:34.6439,58:35.1602,21:31.2463,11:33.237,10:31.7704,15:26.0517,7:28.4904,28:27.6131,46:24.82,33:25.1971,55:27.7647,54:33.2341,25:33.11,3:31.5027,49:35.7855,41:31.9749,1:25.7586,26:32.4875,44:30.1619,37:24.1498,56:32.637,42:35.8583,27:25.3547,50:34.2205,16:35.5722,40:26.4776,48:29.1172,39:30.3683,9:31.1141,52:34.4885,13:32.5158,43:35.7455,19:34.6894,59:29.3004,2:24.7304,20:25.0804,18:31.5335,22:35.6735,35:25.3337,57:32.0807,45:32.7575,38:25.1116,47:26.5191,14:28.9894,53:34.4937}
{0:31.9661,31:24.6008,34:29.7521,4:35.1234,32:27.2132,5:29.0926,8:31.7226,6:30.5725,30:32.5749,24:29.957,29:32.843,17:30.7972,51:29.2329,36:25.4637,12:28.5062,23:25.5453,58:25.0058,21:28.3736,11:34.1635,10:25.1343,15:29.6893,7:36.011,28:29.3452,46:29.581,33:27.6942,55:27.37,54:30.9757,25:24.4939,3:25.1075,49:35.4282,41:28.0879,1:28.8914,26:31.1696,44:31.6367,37:34.2517,56:31.7127,42:34.1533,27:29.5615,50:24.9364,16:31.582,40:28.5352,48:24.2321,39:28.7783,9:33.9285,52:25.701,13:30.9595,43:28.2924,19:31.2838,59:32.3983,2:28.4882,20:33.7658,18:35.27,22:27.269,35:29.9923,57:27.8073,45:26.0972,38:28.8337,47:27.4107,14:32.1545,53:26.2217}
{0:32.6388,31:24.5038,34:33.4056,4:30.6665,32:32.7086,5:25.7803,8:24.4142,6:33.6597,30:31.7028,24:29.6144,29:27.7504,17:26.3212,51:32.7861,36:29.9313,12:32.1122,23:29.1818,58:24.0764,21:24.2321,11:30.9243,10:28.1125,15:33.1339,7:25.4656,28:30.2754,46:29.3184,33:28.4738,55:35.8109,54:27.807,25:30.462,3:30.5541,49:27.4045,41:29.9471,1:32.8617,26:32.9227,44:30.1531,37:27.2418,56:34.4753,42:35.7334,27:30.361,50:32.3025,16:25.8725,40:26.7729,48:25.658,39:30.3081,9:24.3198,52:35.5505,13:29.6159,43:35.5189,19:31.0976,59:28.5282,2:35.346,20:28.6211,18:28.411,22:27.9825,35:32.24,57:29.0632,45:30.2901,38:30.9419,47:28.8322,14:34.3442,53:27.8117}
{0:34.5902,31:29.7947,34:30.0573,4:32.1552,32:35.9295,5:26.9205,8:31.0392,6:32.1034,30:34.8866,24:30.1821,29:32.9341,17:26.7758,51:25.0547,36:33.9535,12:27.7119,23:26.3921,58:34.4896,21:36.0242,11:35.0992,10:33.7647,15:25.4792,7:28.6501,28:29.6284,46:25.9529,33:35.3996,55:31.7773,54:26.6539,25:33.5253,3:26.0693,49:32.6601,41:32.9708,1:24.5615,26:29.2428,44:34.8146,37:34.3156,56:28.136,42:27.5947,27:25.597,50:28.9626,16:28.783,40:34.3806,48:28.4871,39:32.6899,9:29.0265,52:29.3412,13:32.5224,43:26.2804,19:27.4934,59:31.0473,2:29.4881,20:33.7816,18:32.0869,22:24.2302,35:29.0831,57:33.6208,45:24.3404,38:28.1408,47:33.7339,14:26.305,53:33.6637}
{0:28.8602,31:32.3987,34:25.5695,4:31.9573,32:34.3005,5:34.1804,8:29.4231,6:30.4403,30:31.0829,24:27.9094,29:25.2339,17:32.666,51:29.6515,36:26.731,12:34.7059,23:25.3499,58:25.3506,21:30.3195,11:35.0797,10:33.6351,15:34.2899,7:33.4313,28:27.3582,46:25.2801,33:34.3097,55:28.0761,54:33.3909,25:24.7444,3:31.9305,49:35.5043,41:34.598,1:27.7879,26:29.3177,44:33.1577,37:35.8076,56:33.4023,42:27.9902,27:34.5858,50:29.5039,16:31.9727,40:34.3251,48:27.5205,39:34.8624,9:31.5776,52:28.9196,13:33.7662,43:28.4188,19:34.9281,59:34.3732,2:26.9892,20:24.1094,18:28.0875,22:27.6924,35:34.5862,57:24.5927,45:30.9919,38:25.0352,47:25.2647,14:31.3657,53:31.0851}
{0:32.1883,31:32.5764,34:31.553,4:24.39,32:29.2913,5:35.9563,8:30.7003,6:35.1312,30:35.3309,24:26.4813,29:35.3735,17:29.1168,51:28.6013,36:26.0755,12:28.6975,23:32.4082,58:24.8593,21:33.7982,11:24.9893,10:29.6728,15:31.2537,7:27.2594,28:26.0461,46:26.1156,33:32.0954,55:35.5156,54:34.2832,25:27.11,3:29.819,49:25.4645,41:35.3904,1:34.454,26:24.4744,44:29.0529,37:27.0909,56:30.816,42:33.4871,27:28.7952,50:35.5847,16:25.2386,40:24.6077,48:24.8762,39:25.394,9:36.0062,52:24.9382,13:34.0717,43:27.3876,19:33.403,59:30.964,2:27.992,20:30.1689,18:35.0405,22:30.3815,35:31.3723,57:27.4691,45:31.6007,38:27.4629,47:27.9109,14:30.0933,53:27.363}
{0:34.5752,31:33.9043,34:27.9098,4:35.7914,32:27.934,5:29.9589,8:30.5831,6:33.4379,30:31.7634,24:33.3237,29:34.0923,17:27.6575,51:33.6333,36:27.074,12:31.6885,23:24.7524,58:34.2036,21:34.2803,11:34.2807,10:25.8702,15:25.3973,7:28.9534,28:26.2393,46:30.1484,33:32.5878,55:31.6128,54:27.9792,25:26.9183,3:32.5121,49:33.62,41:33.8643,1:34.0578,26:24.0911,44:33.4372,37:32.7002,56:29.0651,42:32.9759,27:33.1724,50:33.7269,16:28.2146,40:29.5131,48:31.4149,39:34.3864,9:25.0139,52:26.1993,13:27.4298,43:24.9911,19:28.6637,59:33.489,2:35.0904,20:28.3251,18:29.6802,22:35.3177,35:27.3443,57:30.0228,45:34.548,38:34.7188,47:34.3207,14:35.0118,53:26.565}
{0:27.5253,31:34.4239,34:28.8069,4:35.6093,32:31.774,5:29.744,8:33.0476,6:32.4886,30:30.2042,24:27.5378,29:33.1074,17:35.9251,51:29.1749,36:27.298,12:26.8753,23:32.7865,58:26.0836,21:35.6721,11:31.2937,10:33.8352,15:30.643,7:24.1498,28:34.4096,46:28.5006,33:26.095,55:30.0048,54:31.9525,25:26.3414,3:32.8012,49:27.663,41:35.7205,1:29.7319,26:28.7426,44:27.0564,37:35.2123,56:35.74,42:26.5959,27:30.7363,50:31.8702,16:29.7745,40:29.8487,48:27.0145,39:31.8857,9:25.7986,52:24.6077,13:32.5871,43:35.2604,19:29.2255,59:35.639,2:27.7394,20:32.229,18:24.2001,22:34.5814,35:30.7363,57:26.4207,45:35.0985,38:34.8106,47:26.0685,14:30.722,53:30.9026}
{0:35.8821,31:31.636,34:27.5921,4:30.4454,32:32.4159,5:27.7442,8:33.2381,6:24.2875,30:29.9104,24:26.9447,29:24.502,17:30.1208,51:27.334,36:33.4254,12:24.0731,23:25.0293,58:32.0024,21:34.8176,11:25.2904,10:24.2438,15:33.6682,7:26.6546,28:24.4979,46:35.317,33:31.3312,55:27.5793,54:25.4208,25:27.3053,3:35.8157,49:29.3137,41:31.9896,1:31.4744,26:28.9336,44:28.7085,37:32.0968,56:33.9428,42:29.6398,27:31.0484,50:30.5119,16:34.8183,40:35.9119,48:31.2328,39:27.399,9:33.4845,52:33.2837,13:33.6546,43:29.1146,19:24.0793,59:31.5258,2:29.1943,20:25.8291,18:27.0545,22:29.1308,35:27.3498,57:31.745,45:31.7784,38:24.9357,47:33.829,14:30.242,53:27.168}
{0:34.0622,31:28.9248,34:35.3658,4:35.3541,32:26.8437,5:25.7245,8:32.926,6:25.2015,30:26.955,24:26.7373,29:25.8938,17:35.1242,51:35.9449,36:32.3491,12:30.2108,23:28.338,58:27.6509,21:31.1758,11:35.6743,10:26.8415,15:33.89,7:24.6581,28:28.6486,46:28.1209,33:29.9137,55:33.511,54:25.402,25:27.5143,3:36.0033,49:29.5469,41:26.9267,1:35.2072,26:27.547,44:35.4683,37:30.6382,56:26.0403,42:35.4962,27:31.4457,50:34.8649,16:27.0358,40:27.5514,48:32.7949,39:33.219,9:29.426,52:24.4858,13:24.997,43:25.9841,19:26.8863,59:27.1129,2:35.4672,20:33.8474,18:29.7319,22:34.3512,35:25.7829,57:27.446,45:29.7121,38:25.2096,47:32.0278,14:35.1029,53:33.078}
{0:30.5831,31:24.9955,34:24.8149,4:31.8122,32:35.5781,5:33.0189,8:35.4954,6:31.6183,30:27.2749,24:33.4809,29:35.4734,17:26.1148,51:35.5726,36:24.1641,12:34.3321,23:31.8423,58:29.6464,21:29.8549,11:24.293,10:34.1878,15:28.8602,7:34.0449,28:33.3692,46:33.7196,33:24.6929,55:29.4106,54:29.3056,25:31.2632,3:34.6475,49:29.155,41:34.06,1:26.3935,26:29.9787,44:28.5587,37:25.6778,56:31.3752,42:25.9936,27:27.0854,50:27.927,16:35.2942,40:33.1977,48:25.7083,39:29.5579,9:24.8295,52:33.2014,13:24.6485,43:31.1854,19:29.8538,59:31.2739,2:27.0376,20:30.0198,18:35.6655,22:33.3626,35:25.8758,57:32.879,45:27.5297,38:35.6376,47:34.5998,14:29.6912,53:31.6811}
{0:33.2275,31:34.0695,34:30.1241,4:27.8077,32:28.5447,5:35.1774,8:33.6204,6:28.2686,30:33.421,24:27.1261,29:31.911,17:33.3645,51:31.272,36:27.9212,12:26.2702,23:35.2035,58:28.7217,21:28.5891,11:25.087,10:32.1391,15:28.9163,7:29.8046,28:25.1876,46:26.8661,33:26.0032,55:28.6791,54:32.7483,25:35.5443,3:31.3716,49:32.8015,41:24.9797,1:28.8969,26:24.1421,44:27.9355,37:35.007,56:27.0373,42:27.2712,27:27.3131,50:34.9531,16:28.013,40:24.0966,48:32.8037,39:27.377,9:30.0323,52:24.423,13:34.83,43:29.2597,19:29.3625,59:32.1104,2:25.329,20:27.1717,18:33.1419,22:26.6131,35:24.3165,57:34.8205,45:26.5786,38:24.6988,47:30.4855,14:26.0002,53:25.0774}
{0:34.3453,31:34.1929,34:34.0783,4:28.6417,32:30.5192,5:25.9029,8:32.8783,6:35.306,30:27.1944,24:26.6429,29:27.7732,17:31.6826,51:34.3387,36:25.1663,12:26.0667,23:30.2482,58:28.2241,21:33.4115,11:25.4817,10:28.8561,15:34.5352,7:25.9015,28:30.5053,46:24.8608,33:28.6299,55:24.1083,54:24.4601,25:30.1865,3:25.3466,49:35.292,41:26.0248,1:33.2514,26:26.6763,44:28.2634,37:32.5944,56:31.3543,42:34.8091,27:29.845,50:30.7646,16:27.7265,40:27.981,48:27.5844,39:29.996,9:24.2776,52:30.6279,13:30.4065,43:32.8882,19:26.706,59:30.3606,2:29.6368,20:25.3664,18:24.6342,22:31.4821,35:32.9572,57:30.2883,45:34.9872,38:31.8882,47:29.2358,14:24.5501,53:35.6203}
{0:29.4606,31:35.7991,34:25.5273,4:33.8892,32:34.2586,5:32.7152,8:28.1925,6:29.8153,30:24.5042,24:31.7751,29:34.6916,17:32.2856,51:27.8176,36:28.9112,12:35.0074,23:35.9236,58:29.6214,21:33.461,11:26.3318,10:32.3175,15:24.1462,7:26.4699,28:24.4238,46:33.2657,33:24.2387,55:27.9153,54:34.6101,25:32.7097,3:31.8475,49:32.7861,41:34.5884,1:29.5876,26:25.0179,44:27.9785,37:34.9806,56:30.4212,42:34.3765,27:30.6,50:24.9522,16:25.8141,40:30.1201,48:32.2698,39:25.4641,9:30.8979,52:25.1178,13:26.0561,43:24.5718,19:33.6465,59:27.2341,2:25.1454,20:29.8281,18:26.4549,22:24.0026,35:31.2585,57:34.8822,45:33.117,38:27.3678,47:35.8516,14:27.9781,53:33.1496}
{0:28.1936,31:35.5186,34:26.7945,4:25.5482,32:29.2814,5:24.6551,8:24.484,6:28.6596,30:32.1042,24:28.5568,29:33.1632,17:30.7594,51:35.7275,36:26.4703,12:29.7418,23:35.794,58:29.3078,21:27.7959,11:27.334,10:28.6071,15:30.2416,7:34.4735,28:34.5711,46:33.3821,33:27.8385,55:29.353,54:30.1069,25:28.1555,3:29.548,49:25.4725,41:34.4415,1:27.5128,26:24.0353,44:32.243,37:24.5883,56:31.5577,42:26.7563,27:32.7138,50:28.2704,16:29.4242,40:29.8818,48:26.1512,39:27.3703,9:35.8057,52:25.7035,13:26.2305,43:31.3547,19:34.2821,59:26.4681,2:30.0782,20:31.4759,18:30.8281,22:25.3734,35:32.9723,57:35.216,45:29.3765,38:32.2312,47:32.698,14:33.2143,53:25.5438}
{0:34.5572,31:35.3383,34:28.9806,4:26.7156,32:27.1037,5:29.5604,8:30.4587,6:35.9835,30:30.6775,24:35.6493,29:33.8393,17:24.3338,51:24.8788,36:31.9319,12:30.6893,23:34.2917,58:24.8373,21:34.6508,11:27.7908,10:31.2974,15:26.6469,7:33.2205,28:25.9095,46:27.6608,33:30.6588,55:25.9584,54:34.0424,25:27.114,3:24.6915,49:32.3994,41:34.4863,1:35.4991,26:26.8761,44:24.9001,37:25.4435,56:28.2366,42:30.3143,27:24.2673,50:30.7146,16:25.1347,40:25.3073,48:26.3877,39:31.3528,9:34.7114,52:26.7523,13:29.0103,43:25.3727,19:29.1936,59:32.1736,2:35.7011,20:29.4077,18:24.7649,22:24.5505,35:32.0539,57:26.4457,45:28.5399,38:34.2289,47:28.2792,14:30.4546,53:26.4288}
{0:27.8441,31:24.4726,34:31.8265,4:27.3604,32:29.9012,5:24.3327,8:32.6781,6:33.9792,30:30.5156,24:30.1865,29:34.4,17:28.8969,51:36.0026,36:32.8037,12:29.2681,23:32.8004,58:34.7169,21:31.6242,11:30.3096,10:25.564,15:29.6849,7:30.6044,28:24.914,46:32.8676,33:26.4696,55:25.7685,54:34.2006,25:27.9774,3:27.2003,49:24.82,41:25.2746,1:26.4732,26:26.3722,44:30.8872,37:27.1001,56:28.02,42:29.4393,27:32.6583,50:31.5148,16:34.9494,40:29.1091,48:35.5167,39:25.3058,9:31.1902,52:25.4568,13:32.3296,43:34.9119,19:29.1326,59:30.0701,2:35.8447,20:24.2651,18:33.7827,22:35.8527,35:31.9753,57:29.2406,45:29.5134,38:34.0016,47:34.1253,14:31.1072,53:29.0155}
{0:35.7709,31:41.0403,34:19.957,4:44.4036,32:29.2411,5:41.0473,8:25.0044,6:37.5561,30:37.8552,24:20.8196,29:44.0014,17:38.6312,51:24.5427,36:22.3583,12:28.0992,23:12.8192,58:30.7772,21:23.7696,11:23.8187,10:21.7889,15:43.1505,7:26.6758,28:46.9979,46:17.7724,33:25.4182,55:46.0779,54:36.4959,25:29.5038,3:46.2393,49:22.0356,41:38.333,1:34.396,26:35.8682,44:29.08,37:21.6046,56:41.5371,42:47.4585,27:39.2315,50:23.0995,16:44.4259,40:44.6238,48:22.6897,39:34.6503,9:17.2235,52:39.3011,13:29.2357,43:40.0818,19:34.8402,59:24.5854,2:35.2249,20:25.9655,18:32.2653,22:18.9009,35:11.8583,57:32.4859,45:27.5489,38:31.2824,47:16.1624,14:32.1344,53:42.2501}
{0:24.9706,31:26.2496,34:10.9314,4:40.0592,32:23.0347,5:38.257,8:19.5559,6:30.9737,30:37.7187,24:27.3762,29:44.5109,17:39.9479,51:40.1772,36:30.0701,12:33.8766,23:22.7429,58:11.4137,21:11.6346,11:25.8069,10:13.9613,15:39.9575,7:24.2685,28:46.3881,46:14.5014,33:22.8681,55:26.3209,54:43.8886,25:36.2696,3:42.5033,49:26.866,41:41.9338,1:33.8315,26:42.7262,44:17.3099,37:27.9194,56:30.8269,42:34.0903,27:39.0815,50:31.4218,16:39.8964,40:40.5399,48:25.3264,39:38.2759,9:14.9595,52:40.7762,13:35.1541,43:28.2374,19:24.5035,59:13.1961,2:46.9423,20:23.8026,18:35.3773,22:19.4908,35:24.4129,57:24.1889,45:17.0727,38:42.9813,47:19.3736,14:35.0888,53:36.4066}
{0:35.5351,31:43.5643,34:20.7055,4:38.6103,32:35.0768,5:34.5755,8:21.1805,6:39.4181,30:44.5071,24:19.3221,29:42.0011,17:46.4321,51:15.4841,36:18.6236,12:26.4578,23:22.6636,58:37.2248,21:23.3135,11:24.265,10:14.5935,15:45.5757,7:29.1601,28:45.7347,46:32.956,33:23.3575,55:48.2339,54:42.1698,25:17.248,3:48.3964,49:13.0734,41:39.407,1:41.7067,26:27.1418,44:45.3199,37:18.7408,56:46.0566,42:44.8076,27:39.0091,50:22.8846,16:48.4191,40:35.5579,48:15.7995,39:26.2064,9:20.4808,52:32.6882,13:28.9629,43:48.1086,19:35.509,59:32.9494,2:39.1705,20:22.1924,18:35.8598,22:23.2302,35:19.9759,57:37.7721,45:36.0476,38:27.4668,47:27.4532,14:31.7837,53:30.0856}
{0:24.2104,31:40.7078,34:30.5172,4:48.8175,32:34.2781,5:42.4056,8:21.9765,6:33.754,30:42.7228,24:10.5987,29:45.4319,17:44.9226,51:16.1907,36:15.7467,12:25.9956,23:16.1412,58:40.3084,21:25.0466,11:13.2447,10:14.6318,15:39.1692,7:27.3527,28:39.6169,46:35.1324,33:36.3512,55:41.065,54:30.5317,25:24.3277,3:43.7762,49:22.2505,41:32.4536,1:41.7679,26:18.0507,44:38.1183,37:13.948,56:44.3438,42:43.0862,27:26.8056,50:14.7018,16:48.3092,40:22.5105,48:19.4728,39:21.9495,9:22.2249,52:21.4407,13:22.9981,43:41.8163,19:33.9707,59:45.0065,2:45.2228,20:33.7175,18:44.9275,22:19.1417,35:21.4045,57:45.9355,45:46.5417,38:14.5696,47:27.1443,14:36.5781,53:21.923}
{0:31.5555,31:25.5561,34:48.6975,4:34.2128,32:35.7218,5:26.8555,8:19.8027,6:30.1153,30:12.0783,24:42.0267,29:11.8441,17:23.6006,51:13.8714,36:35.859,12:40.1876,23:41.001,58:35.1972,21:32.2748,11:31.8521,10:26.7693,15:37.7174,7:13.082,28:19.3745,46:45.1359,33:43.9844,55:45.987,54:37.3841,25:47.4836,3:40.4056,49:16.4292,41:20.0223,1:33.8108,26:31.6293,44:35.1351,37:34.6789,56:43.623,42:27.5827,27:31.7157,50:21.88,16:24.2572,40:14.7885,48:29.2927,39:23.1508,9:19.3834,52:22.6016,13:39.8323,43:38.2921,19:16.1605,59:23.164,2:47.7598,20:16.1841,18:13.4661,22:40.7452,35:38.1681,57:43.531,45:43.0436,38:30.3785,47:31.75,14:43.9535,53:26.2231}
{0:28.8411,31:18.7745,34:32.7677,4:38.3215,32:23.6087,5:29.9606,8:14.1518,6:28.558,30:22.5751,24:43.1704,29:15.915,17:28.3977,51:22.7719,36:33.9751,12:31.228,23:32.3959,58:40.2336,21:23.9996,11:32.0057,10:21.4327,15:35.6725,7:27.0297,28:29.4939,46:38.0439,33:29.5751,55:32.2925,54:35.0257,25:35.3792,3:35.1881,49:27.5154,41:23.2724,1:34.9491,26:35.4439,44:33.144,37:30.6442,56:41.6378,42:17.5351,27:31.3646,50:28.0469,16:36.6971,40:17.0723,48:34.6423,39:23.5429,9:17.7457,52:17.6894,13:35.0438,43:33.1531,19:25.5593,59:28.6438,2:42.3064,20:21.4584,18:24.3614,22:33.867,35:39.0122,57:38.8235,45:43.3795,38:27.6479,47:38.498,14:40.8649,53:24.643}
{0:28.4004,31:23.2439,34:40.3571,4:42.7544,32:26.7731,5:32.9513,8:16.1984,6:29.7748,30:15.003,24:47.9608,29:14.9492,17:19.0391,51:10.7992,36:39.9174,12:41.4701,23:47.5312,58:32.6956,21:24.7247,11:35.4492,10:22.6271,15:33.1578,7:20.6785,28:17.4009,46:39.0893,33:34.7717,55:43.0726,54:32.7261,25:38.2376,3:42.5002,49:18.8891,41:14.8137,1:39.8835,26:33.4948,44:40.324,37:35.4881,56:49.6394,42:24.6532,27:31.8874,50:14.1087,16:33.9853,40:14.4941,48:24.0185,39:21.6087,9:15.6932,52:24.6741,13:45.5868,43:35.3538,19:15.2926,59:26.7285,2:40.4039,20:24.0683,18:14.6295,22:37.9322,35:38.0118,57:44.2687,45:47.4154,38:24.5046,47:39.7996,14:42.5029,53:23.5884}
{0:34.5403,31:42.7735,34:37.5257,4:35.0919,32:43.9582,5:35.817,8:23.4916,6:38.3182,30:38.4103,24:18.6707,29:32.8416,17:37.2467,51:23.7854,36:23.3608,12:21.3046,23:23.8918,58:37.6391,21:28.1344,11:19.2891,10:22.4225,15:37.4223,7:24.3964,28:30.6991,46:44.6772,33:38.6373,55:27.3852,54:23.0587,25:16.1746,3:40.9382,49:30.0522,41:19.739,1:36.1093,26:18.007,44:37.8563,37:27.6761,56:30.9244,42:29.0946,27:25.585,50:23.1454,16:36.561,40:26.093,48:39.681,39:25.1861,9:19.8293,52:21.3468,13:27.446,43:32.1618,19:36.4961,59:38.2598,2:40.7151,20:31.5585,18:34.3636,22:24.4481,35:32.3157,57:32.8075,45:34.0971,38:24.5498,47:39.5753,14:35.0779,53:22.8669}
{0:28.2605,31:25.156,34:42.4148,4:37.1533,32:29.8314,5:33.4367,8:18.3349,6:30.1819,30:18.4715,24:40.7795,29:16.7765,17:20.038,51:19.2692,36:43.5514,12:43.5086,23:45.8125,58:38.3285,21:21.728,11:33.0963,10:25.602,15:39.4724,7:25.1225,28:20.4141,46:46.2625,33:38.2776,55:36.1302,54:26.7159,25:44.9571,3:41.2148,49:30.2528,41:13.721,1:33.4574,26:35.8433,44:38.3525,37:33.5848,56:39.6474,42:18.8011,27:33.54,50:21.4883,16:28.1088,40:21.9488,48:34.1759,39:25.4418,9:20.6586,52:18.9633,13:41.2493,43:31.3587,19:20.7693,59:26.839,2:43.3897,20:19.1773,18:20.8383,22:28.683,35:37.2415,57:38.9016,45:38.5398,38:27.1955,47:41.0847,14:42.5565,53:20.6217}
{0:24.8898,31:35.0152,34:38.5867,4:39.3679,32:38.5666,5:39.0897,8:23.222,6:38.8469,30:38.9398,24:18.4649,29:32.5447,17:43.823,51:32.773,36:26.4805,12:14.1679,23:20.0828,58:27.5978,21:33.6655,11:22.7762,10:15.7651,15:33.5719,7:33.6141,28:24.1681,46:37.2888,33:47.4021,55:22.3295,54:20.1922,25:14.0268,3:43.1023,49:43.4843,41:18.7308,1:38.805,26:21.8696,44:27.3654,37:23.5885,56:20.9811,42:17.3381,27:24.6858,50:36.268,16:33.8683,40:20.9013,48:37.6379,39:22.7814,9:23.3015,52:19.8359,13:22.2549,43:24.0946,19:46.3503,59:31.8755,2:37.92,20:42.8637,18:41.0436,22:31.6634,35:39.4744,57:27.9966,45:39.5289,38:16.2014,47:42.1669,14:24.9245,53:17.9304}
{0:30.7425,31:46.1688,34:39.7422,4:39.3712,32:41.2444,5:44.1962,8:18.4354,6:37.6507,30:38.2189,24:13.1377,29:35.5,17:49.4517,51:21.7675,36:19.9717,12:18.0495,23:19.4725,58:40.206,21:26.7467,11:11.5834,10:13.3554,15:34.7209,7:28.8875,28:31.4431,46:46.5014,33:37.8473,55:26.8031,54:17.9138,25:21.002,3:42.739,49:30.769,41:26.7096,1:37.9754,26:17.6963,44:37.2131,37:24.1381,56:26.095,42:26.7751,27:21.995,50:20.4861,16:42.0029,40:12.4505,48:34.9641,39:13.0632,9:20.9146,52:16.6897,13:28.5362,43:36.473,19:42.4498,59:48.5869,2:43.1891,20:36.5443,18:45.422,22:27.3971,35:36.6668,57:30.9324,45:43.4866,38:15.0715,47:47.9382,14:31.8329,53:20.8294}
{0:32.1442,31:36.4173,34:18.5294,4:48.9829,32:38.1247,5:39.61,8:26.7408,6:30.854,30:41.6795,24:19.5571,29:44.5111,17:42.4024,51:19.6335,36:19.104,12:21.4488,23:19.9163,58:40.4535,21:19.4062,11:18.3095,10:20.5381,15:36.8965,7:32.244,28:44.7841,46:37.5442,33:30.4026,55:39.519,54:30.9373,25:22.3479,3:43.7898,49:18.2254,41:35.9893,1:37.6735,26:28.1336,44:39.0895,37:16.5998,56:43.3949,42:43.7921,27:27.7408,50:11.4926,16:46.8663,40:37.6115,48:21.445,39:24.9301,9:16.4025,52:21.1172,13:30.5328,43:48.7451,19:30.2846,59:32.7141,2:44.3604,20:28.0563,18:35.0662,22:14.6652,35:19.9396,57:42.9109,45:33.0155,38:20.3531,47:28.9469,14:32.5922,53:25.5808}
{0:28.5487,31:30.7317,34:35.8849,4:40.991,32:36.0663,5:40.9896,8:30.4491,6:40.6828,30:26.231,24:27.8152,29:30.7055,17:41.4225,51:32.8185,36:39.7325,12:19.811,23:24.4063,58:19.1903,21:37.9459,11:16.1749,10:15.8185,15:25.9806,7:37.1377,28:19.3346,46:36.0863,33:46.0435,55:17.3597,54:19.4809,25:18.6115,3:37.8523,49:37.2871,41:21.5861,1:38.744,26:23.3455,44:22.7838,37:24.5143,56:22.8378,42:26.6075,27:16.5313,50:43.0745,16:34.4269,40:17.0588,48:45.1335,39:28.1053,9:26.8964,52:33.2167,13:17.9418,43:21.9976,19:42.9488,59:27.7754,2:41.5082,20:34.1235,18:35.2909,22:33.6538,35:32.1875,57:23.1099,45:35.1121,38:28.4302,47:40.2796,14:31.5212,53:23.3482}
{0:29.7481,31:49.2067,34:37.9759,4:42.4431,32:41.6685,5:38.1345,8:17.8574,6:30.4926,30:43.6363,24:12.5872,29:42.2281,17:45.3945,51:21.6952,36:21.5901,12:18.0614,23:17.8971,58:44.9136,21:27.2127,11:18.7899,10:14.1993,15:35.8468,7:24.4804,28:31.4798,46:38.9672,33:41.6546,55:28.0073,54:26.6645,25:22.7502,3:47.1441,49:29.2668,41:34.2972,1:35.0096,26:17.8389,44:47.102,37:22.7819,56:41.5617,42:39.5432,27:27.1988,50:20.9359,16:38.3537,40:20.196,48:25.8723,39:18.9154,9:16.51,52:14.8328,13:29.2729,43:43.9576,19:35.2864,59:48.8988,2:45.5182,20:28.8721,18:37.4028,22:18.7626,35:26.9402,57:40.1772,45:45.4469,38:13.9352,47:40.748,14:29.1877,53:19.0264}
{0:33.2631,31:43.7258,34:34.658,4:45.5522,32:36.6988,5:43.5135,8:31.0824,6:32.7647,30:35.1193,24:25.3819,29:36.0118,17:34.4489,51:28.3597,36:22.6351,12:26.9831,23:28.5552,58:38.4197,21:30.9972,11:20.116,10:18.66,15:38.3987,7:29.3747,28:26.6734,46:42.6871,33:43.0794,55:23.6286,54:24.7123,25:16.982,3:40.0448,49:27.1743,41:26.6178,1:32.5615,26:26.2182,44:41.9434,37:22.3977,56:31.0698,42:31.5342,27:26.1982,50:25.5406,16:38.3702,40:25.5161,48:38.8656,39:17.3228,9:17.2672,52:25.664,13:21.2942,43:36.1283,19:34.3838,59:39.0139,2:40.7387,20:38.8619,18:39.7835,22:27.4411,35:27.4547,57:35.5657,45:34.2076,38:23.4841,47:35.7141,14:28.2209,53:24.0535}
{0:30.7568,31:38.1887,34:43.1842,4:38.2801,32:33.3,5:43.9991,8:30.2355,6:37.319,30:35.7893,24:28.9272,29:26.3122,17:38.324,51:41.2383,36:37.225,12:18.7363,23:25.282,58:20.855,21:40.8654,11:18.6039,10:15.7433,15:32.1103,7:28.0925,28:22.4766,46:29.9052,33:34.4444,55:26.2182,54:20.5264,25:17.8594,3:42.8655,49:39.2123,41:20.8361,1:30.4465,26:18.2777,44:30.3844,37:27.1919,56:13.3387,42:25.69,27:19.9084,50:35.4702,16:36.2311,40:17.0854,48:35.0381,39:27.3743,9:28.6748,52:26.802,13:16.5419,43:23.2508,19:37.9792,59:23.967,2:35.8128,20:35.8137,18:44.6487,22:35.9729,35:35.8281,57:21.5827,45:24.8467,38:22.5461,47:41.4951,14:22.8501,53:24.4047}
{0:27.0824,31:38.0625,34:29.7622,4:38.6049,32:36.6877,5:42.6665,8:21.1538,6:29.1573,30:37.7656,24:21.7831,29:35.5011,17:45.3085,51:24.6047,36:18.0805,12:18.4404,23:20.3247,58:35.3176,21:28.0688,11:21.1574,10:15.9524,15:41.7983,7:31.1564,28:33.934,46:41.0141,33:29.434,55:40.1686,54:31.1652,25:22.1205,3:40.8167,49:27.1423,41:30.9865,1:38.1203,26:19.1262,44:41.0299,37:16.2138,56:39.749,42:42.579,27:32.9311,50:24.3613,16:38.9014,40:28.1273,48:29.5514,39:28.5203,9:24.6409,52:15.3662,13:27.6077,43:34.9057,19:34.7437,59:40.0279,2:36.7182,20:28.9773,18:44.0046,22:21.854,35:24.4747,57:42.117,45:43.4027,38:15.5198,47:25.7749,14:28.6911,53:21.1386}
{0:26.276,31:20.7571,34:28.6862,4:38.8451,32:20.5604,5:30.8415,8:19.1752,6:24.337,30:13.6412,24:44.7619,29:22.0618,17:28.7161,51:22.5113,36:38.7712,12:32.3838,23:32.0104,58:36.4414,21:21.5373,11:22.4861,10:17.0312,15:36.4755,7:19.0405,28:26.6791,46:38.1926,33:29.5806,55:19.1836,54:13.9054,25:43.5953,3:47.0287,49:39.6101,41:22.8459,1:42.1307,26:44.5503,44:22.0363,37:39.1912,56:30.9761,42:21.5674,27:42.7948,50:38.1169,16:31.7606,40:29.8035,48:43.6209,39:37.0817,9:19.5516,52:25.9638,13:44.9532,43:15.4343,19:23.1604,59:41.8306,2:40.1317,20:15.0946,18:26.7456,22:26.8234,35:39.0231,57:34.5208,45:24.8876,38:42.6814,47:40.1233,14:38.306,53:16.903}
{0:31.1421,31:41.5105,34:30.6898,4:42.5755,32:32.8248,5:38.6982,8:18.4128,6:34.8363,30:38.8783,24:19.4116,29:39.324,17:43.8388,51:18.9865,36:22.2143,12:22.7188,23:20.7135,58:44.6804,21:26.6117,11:22.3786,10:20.7811,15:37.9021,7:27.2288,28:35.771,46:36.2263,33:29.6894,55:38.1527,54:37.3268,25:15.1044,3:43.4115,49:25.6927,41:30.6916,1:32.324,26:26.2716,44:44.7348,37:17.4271,56:45.8281,42:42.9717,27:32.786,50:14.2865,16:43.4003,40:27.7921,48:21.2598,39:20.8704,9:14.0898,52:21.5345,13:21.7725,43:45.0107,19:39.9676,59:42.1113,2:37.5355,20:34.1245,18:39.0265,22:23.7401,35:16.3157,57:37.3389,45:35.1978,38:24.307,47:33.5025,14:32.3935,53:22.3358}
{0:29.7793,31:38.6526,34:37.9023,4:45.4788,32:40.3809,5:37.7171,8:31.4416,6:31.0806,30:29.9536,24:21.9657,29:26.3878,17:41.7646,51:27.6102,36:27.9722,12:15.6057,23:20.5443,58:28.9665,21:30.2243,11:22.336,10:19.662,15:36.5924,7:26.7689,28:21.425,46:38.8503,33:35.2698,55:24.4191,54:23.428,25:25.8915,3:39.257,49:38.0385,41:22.8803,1:33.5955,26:17.6732,44:38.2491,37:27.5859,56:27.0137,42:31.1704,27:27.3834,50:32.2666,16:42.3301,40:15.6561,48:42.9412,39:22.9904,9:23.4211,52:23.0217,13:29.3483,43:25.1837,19:42.6153,59:42.7579,2:38.2882,20:34.2203,18:42.5535,22:30.6954,35:38.6286,57:32.8483,45:43.418,38:24.6164,47:35.6262,14:30.2411,53:15.0511}
{0:29.8417,31:44.0685,34:35.322,4:46.1419,32:35.6235,5:41.4995,8:19.9875,6:29.7408,30:40.2723,24:21.2193,29:38.2861,17:46.4827,51:11.7595,36:16.7937,12:17.3603,23:12.4713,58:38.4624,21:20.4711,11:19.8401,10:12.828,15:32.9343,7:33.6235,28:34.8788,46:32.4193,33:33.0224,55:29.8439,54:31.8437,25:18.5793,3:38.1337,49:16.2215,41:33.9955,1:37.657,26:23.4753,44:43.5294,37:22.0056,56:43.9624,42:39.5705,27:34.8505,50:17.1046,16:46.853,40:23.2371,48:30.3446,39:22.1034,9:13.6796,52:20.1056,13:22.4517,43:37.2169,19:36.7467,59:35.4745,2:41.6643,20:36.7744,18:42.9656,22:15.7887,35:26.8051,57:44.9137,45:45.0718,38:19.1145,47:36.1643,14:30.1885,53:27.3057}
{0:29.8854,31:41.3306,34:45.0426,4:47.0325,32:34.7946,5:38.241,8:21.4466,6:33.7387,30:39.3129,24:15.7385,29:32.2934,17:45.6552,51:36.7576,36:37.7498,12:18.6095,23:20.2628,58:29.7463,21:39.7848,11:21.8276,10:15.9478,15:37.6624,7:25.925,28:28.0654,46:33.0786,33:42.3561,55:22.8141,54:19.0554,25:18.0137,3:36.2892,49:34.1983,41:22.5931,1:29.021,26:20.5864,44:25.3415,37:24.7401,56:22.9512,42:17.446,27:20.9369,50:30.2432,16:31.2481,40:13.3013,48:36.5139,39:21.1901,9:25.7283,52:27.1158,13:19.1829,43:21.9409,19:45.8088,59:33.4762,2:38.6378,20:39.9595,18:40.4705,22:26.5972,35:35.4503,57:23.4063,45:40.2555,38:22.2827,47:35.2796,14:30.8004,53:18.8256}
{0:26.059,31:37.1907,34:21.4009,4:42.5722,32:41.4338,5:34.0582,8:21.1241,6:30.3299,30:42.3175,24:14.7531,29:39.3654,17:40.2596,51:15.7231,36:22.1928,12:16.3218,23:10.6051,58:42.5527,21:23.9,11:16.5727,10:19.1064,15:37.0183,7:26.945,28:36.2601,46:29.0284,33:34.219,55:39.4032,54:34.3057,25:19.2064,3:41.7848,49:11.9235,41:42.8326,1:33.4436,26:24.1793,44:43.4007,37:18.823,56:38.3136,42:46.3957,27:31.9541,50:13.5061,16:42.1883,40:32.4192,48:21.3189,39:19.2243,9:14.6946,52:17.09,13:27.062,43:48.1395,19:39.3723,59:34.4024,2:38.8249,20:31.278,18:38.4041,22:20.579,35:22.1022,57:39.0705,45:40.1506,38:15.4352,47:21.1716,14:33.3793,53:30.7336}
{0:33.2194,31:23.8462,34:23.0742,4:38.3517,32:16.3875,5:37.7406,8:16.7407,6:25.9408,30:24.6716,24:27.0563,29:33.6835,17:31.3377,51:44.9496,36:33.4573,12:31.9872,23:28.1936,58:24.0905,21:13.259,11:25.8889,10:16.3406,15:43.4289,7:25.4453,28:37.7158,46:17.9909,33:23.71,55:15.2331,54:30.0664,25:33.181,3:47.1315,49:38.1911,41:28.077,1:35.8685,26:38.2686,44:19.3939,37:37.4594,56:14.5865,42:20.6412,27:44.5323,50:47.984,16:36.8162,40:34.0586,48:33.4172,39:46.9368,9:23.2634,52:34.9163,13:39.2912,43:19.6025,19:20.1941,59:32.3692,2:36.955,20:16.6629,18:26.7043,22:22.0613,35:25.3557,57:12.5258,45:22.5548,38:42.8146,47:31.4263,14:37.5751,53:29.4409}
{0:26.8147,31:42.2875,34:29.089,4:36.8047,32:40.8422,5:34.5668,8:19.8025,6:32.1102,30:38.1975,24:23.85,29:38.1625,17:40.318,51:13.8917,36:20.4405,12:17.2377,23:14.9351,58:36.9201,21:23.6424,11:15.7631,10:12.7327,15:42.5577,7:28.8161,28:35.3653,46:35.195,33:35.7815,55:38.5146,54:29.474,25:24.354,3:45.9509,49:15.5465,41:40.5964,1:35.659,26:25.5352,44:40.5779,37:16.3431,56:41.664,42:40.3963,27:35.4305,50:20.8647,16:42.3353,40:25.9342,48:21.1011,39:21.2145,9:24.7117,52:21.6347,13:30.5339,43:46.1159,19:31.39,59:32.8873,2:40.0448,20:33.3716,18:40.9768,22:18.1504,35:17.6211,57:37.7865,45:44.576,38:25.2666,47:28.672,14:31.8565,53:25.0307}
{0:24.0037,31:17.1595,34:16.1829,4:39.082,32:14.568,5:40.1985,8:20.4087,6:29.1954,30:22.7584,24:30.9185,29:37.9744,17:41.326,51:44.3432,36:32.3265,12:29.4168,23:28.1057,58:15.5366,21:15.6749,11:17.1616,10:15.597,15:48.7631,7:17.0442,28:37.7389,46:23.5331,33:12.7434,55:20.4561,54:30.4834,25:40.1609,3:39.6478,49:42.2556,41:38.2492,1:35.8809,26:43.7781,44:22.0908,37:40.2639,56:20.6186,42:24.0261,27:46.2128,50:44.3969,16:43.1989,40:36.6706,48:29.1826,39:47.8568,9:9.3816,52:41.3229,13:41.178,43:21.1555,19:21.2629,59:30.5863,2:38.8854,20:18.8219,18:32.5536,22:11.9467,35:25.8339,57:21.0214,45:12.807,38:41.1807,47:19.2486,14:46.7701,53:40.1345}
{0:29.7191,31:35.0506,34:22.809,4:38.4162,32:31.9822,5:38.2877,8:14.3845,6:29.6741,30:45.2809,24:16.099,29:46.4693,17:43.8259,51:24.3326,36:11.6986,12:18.7554,23:15.5811,58:28.0335,21:24.5293,11:20.7709,10:15.3331,15:46.5455,7:25.9852,28:47.8725,46:18.8822,33:24.3381,55:39.7163,54:45.0236,25:29.3377,3:40.8522,49:18.6547,41:40.1427,1:30.7809,26:36.7325,44:30.9477,37:15.0845,56:36.6515,42:49.7552,27:39.3069,50:24.8714,16:49.2307,40:42.5484,48:12.9733,39:27.8207,9:21.9506,52:30.0769,13:34.1252,43:41.3569,19:26.4022,59:27.4249,2:40.2461,20:27.4004,18:32.1281,22:12.1374,35:16.0267,57:36.7801,45:30.6163,38:29.6455,47:21.9439,14:31.5834,53:35.7262}
{0:34.0413,31:29.9338,34:39.0679,4:42.9716,32:33.3385,5:33.3002,8:19.3251,6:24.5335,30:15.1449,24:38.721,29:19.4178,17:18.5778,51:13.0915,36:33.256,12:40.4454,23:39.6818,58:30.6777,21:24.9002,11:34.9149,10:20.9691,15:36.3252,7:20.8579,28:25.3144,46:47.2263,33:34.7259,55:37.5728,54:42.5988,25:37.4091,3:40.4858,49:18.1771,41:21.901,1:33.0558,26:36.8732,44:38.411,37:32.1431,56:44.5405,42:30.1836,27:29.192,50:16.9523,16:35.1673,40:18.7324,48:25.7795,39:14.6488,9:24.6109,52:27.4217,13:42.1688,43:29.2278,19:14.8446,59:23.0052,2:47.1407,20:16.4814,18:16.4828,22:39.2064,35:38.9667,57:40.38,45:48.1184,38:23.5196,47:36.9325,14:37.7588,53:25.7377}
{0:26.3583,31:14.2801,34:26.8188,4:40.7608,32:22.7594,5:31.7019,8:12.9129,6:33.7671,30:23.5417,24:42.7399,29:29.7383,17:36.2698,51:30.9997,36:37.922,12:36.521,23:33.108,58:32.6175,21:20.3952,11:27.3406,10:17.3474,15:46.338,7:16.3022,28:36.5698,46:25.3635,33:25.8083,55:23.5599,54:19.5439,25:45.7245,3:42.2493,49:46.1271,41:29.0349,1:41.0159,26:40.1983,44:17.1803,37:43.2431,56:27.3578,42:24.9492,27:34.6581,50:40.019,16:32.6653,40:34.6257,48:43.7804,39:39.6924,9:14.5288,52:26.272,13:41.0073,43:22.7362,19:13.378,59:39.3324,2:46.4368,20:19.4014,18:29.778,22:26.7193,35:40.2959,57:29.3063,45:26.8355,38:38.2278,47:39.8799,14:36.6456,53:21.2123}
{0:29.4044,31:23.1473,34:37.3212,4:32.8872,32:34.8849,5:33.2271,8:12.8334,6:20.5219,30:20.5751,24:39.9928,29:15.0298,17:15.0891,51:22.6827,36:33.0966,12:43.3039,23:45.5263,58:19.465,21:35.9479,11:29.958,10:23.4341,15:37.9667,7:17.818,28:22.0216,46:32.0695,33:43.678,55:40.4707,54:38.6815,25:36.7381,3:47.06,49:13.3169,41:20.9265,1:37.9153,26:33.9146,44:37.7375,37:21.7189,56:42.4664,42:32.7448,27:17.7287,50:13.6127,16:22.7553,40:20.7521,48:24.9757,39:15.721,9:24.4642,52:23.0514,13:38.5418,43:37.5577,19:17.1499,59:19.7029,2:42.9343,20:28.8686,18:20.0411,22:39.7371,35:37.6177,57:37.1812,45:37.7271,38:14.9764,47:28.1809,14:36.8787,53:38.0797}
{0:32.7824,31:19.613,34:17.6487,4:33.3502,32:16.6861,5:32.3278,8:17.5616,6:30.7077,30:28.9688,24:32.1531,29:30.3235,17:34.1711,51:35.695,36:24.6169,12:33.5483,23:19.9948,58:17.5393,21:22.7476,11:28.2534,10:16.5663,15:35.1686,7:20.9117,28:34.933,46:22.7954,33:14.4412,55:28.6318,54:31.9464,25:33.7879,3:41.1918,49:38.497,41:30.4264,1:35.4013,26:40.9765,44:23.9866,37:36.6319,56:21.2604,42:29.79,27:42.0481,50:39.7943,16:36.4193,40:34.0266,48:26.0288,39:39.286,9:13.7516,52:36.2334,13:39.0958,43:19.7448,19:24.7323,59:23.3659,2:43.1513,20:21.6053,18:32.6901,22:22.446,35:22.8212,57:17.4355,45:16.7953,38:36.9189,47:28.3563,14:42.7483,53:30.2115}
{0:24.0823,31:20.3293,34:21.5377,4:44.1481,32:14.7924,5:37.6568,8:20.0148,6:27.1227,30:24.5923,24:30.0016,29:26.5808,17:29.1157,51:42.2168,36:36.7649,12:28.609,23:26.2517,58:30.8444,21:16.2058,11:26.8917,10:19.9849,15:38.5804,7:25.928,28:32.2107,46:22.6466,33:24.1676,55:22.2013,54:26.3122,25:37.2407,3:46.4448,49:36.3569,41:22.3716,1:39.542,26:45.0267,44:14.8759,37:44.3524,56:23.8705,42:19.3152,27:42.8906,50:36.8069,16:37.718,40:31.4146,48:33.7466,39:42.4474,9:15.0963,52:37.1631,13:32.2573,43:18.3085,19:21.2087,59:31.9461,2:44.7246,20:14.0566,18:25.728,22:22.0113,35:26.5376,57:27.9548,45:26.1938,38:35.8989,47:38.906,14:36.2212,53:28.3435}
{0:30.8956,31:41.8185,34:27.6898,4:46.8106,32:41.6468,5:34.0587,8:25.9809,6:31.4438,30:47.4378,24:19.8256,29:43.1261,17:37.847,51:20.7221,36:17.3307,12:16.8501,23:19.9304,58:37.0306,21:21.6039,11:15.1859,10:16.1807,15:37.8865,7:33.3497,28:38.2161,46:33.9421,33:30.5036,55:47.94,54:33.6417,25:24.4574,3:42.0363,49:10.7425,41:36.1319,1:39.4336,26:32.5921,44:39.3573,37:13.0762,56:38.5679,42:38.8105,27:36.161,50:11.6026,16:49.0356,40:32.9682,48:20.6031,39:22.8611,9:17.4067,52:21.7875,13:23.6637,43:38.041,19:29.2626,59:26.8016,2:39.5974,20:29.5323,18:38.2559,22:13.7374,35:18.8469,57:46.6194,45:41.1814,38:15.9185,47:23.7546,14:29.3002,53:32.3239}
{0:30.6452,31:49.0611,34:31.5485,4:39.2562,32:45.2724,5:38.762,8:19.1655,6:38.4,30:43.4118,24:10.8242,29:47.2711,17:48.2751,51:19.2114,36:17.2146,12:18.7599,23:10.5893,58:45.2266,21:22.3788,11:12.8291,10:13.2109,15:36.1103,7:24.4824,28:33.7933,46:33.5415,33:34.169,55:40.7686,54:36.1555,25:15.1053,3:41.2529,49:16.4501,41:31.1446,1:33.5252,26:21.3766,44:40.3528,37:17.5982,56:43.7731,42:39.9752,27:29.6578,50:20.2041,16:48.6031,40:28.2999,48:26.5876,39:24.7824,9:20.1992,52:12.4077,13:25.6468,43:49.6628,19:32.5005,59:42.783,2:47.7151,20:29.7102,18:45.7563,22:25.1075,35:23.9859,57:38.7943,45:42.8835,38:20.4758,47:37.2749,14:38.5677,53:23.5028}
{0:35.4646,31:19.0999,34:17.1666,4:38.3622,32:14.9406,5:37.224,8:18.8444,6:31.0864,30:30.2816,24:32.4388,29:31.785,17:29.8952,51:42.0269,36:26.444,12:24.7471,23:23.9745,58:20.0448,21:20.3918,11:28.9564,10:19.2947,15:39.7815,7:22.7959,28:42.8424,46:24.6997,33:18.7319,55:19.7386,54:28.7518,25:41.6363,3:40.355,49:36.3487,41:29.9568,1:35.478,26:46.3351,44:18.3272,37:33.3483,56:17.784,42:32.9891,27:37.8753,50:48.3386,16:39.4978,40:45.3279,48:31.2329,39:41.4629,9:12.2326,52:33.9831,13:31.3671,43:17.3461,19:19.7036,59:27.7847,2:37.3539,20:15.4996,18:30.6365,22:14.4383,35:22.0404,57:14.8201,45:15.0005,38:46.9012,47:24.2448,14:42.8636,53:28.4909}
{0:29.5406,31:23.1818,34:24.5144,4:42.6702,32:17.8762,5:33.6437,8:24.8114,6:31.6486,30:33.3231,24:30.7559,29:34.2776,17:39.1189,51:42.4861,36:27.9923,12:26.5453,23:21.0209,58:19.2096,21:23.9433,11:19.1082,10:17.9847,15:42.6346,7:20.7756,28:42.4509,46:21.468,33:16.7051,55:31.3235,54:33.2341,25:33.1634,3:38.0802,49:39.3569,41:31.1492,1:33.5848,26:42.1031,44:20.9752,37:38.2543,56:18.1452,42:29.7761,27:42.2453,50:34.1597,16:36.3555,40:35.7929,48:30.6163,39:39.6505,9:13.2187,52:37.1547,13:39.8323,43:25.7107,19:19.8007,59:18.7337,2:35.8956,20:19.9331,18:27.2185,22:24.8578,35:28.5012,57:17.7995,45:18.3334,38:35.2001,47:19.684,14:41.5444,53:34.9041}
{0:26.1545,31:24.1643,34:42.0557,4:42.1159,32:32.8481,5:33.9911,8:22.1169,6:30.7743,30:18.82,24:40.9042,29:21.8745,17:19.7673,51:13.3219,36:40.8135,12:42.6517,23:39.5122,58:34.9124,21:27.4865,11:35.5808,10:22.7121,15:36.978,7:20.6414,28:19.4483,46:36.9469,33:37.1484,55:44.2686,54:32.9866,25:45.146,3:44.8597,49:18.838,41:22.4996,1:37.2301,26:33.9636,44:33.456,37:31.4954,56:43.8543,42:30.557,27:26.3889,50:16.871,16:31.0988,40:14.8372,48:27.8942,39:20.5554,9:25.5723,52:26.9516,13:45.5983,43:34.4191,19:19.6922,59:23.3873,2:37.0039,20:24.9255,18:21.3027,22:29.5363,35:38.9684,57:35.5043,45:35.0899,38:21.8887,47:34.3121,14:35.8229,53:25.106}
{0:24.3422,31:23.5288,34:47.1319,4:43.0979,32:34.8436,5:29.3166,8:19.4387,6:24.7874,30:21.0474,24:48.3573,29:14.5728,17:17.7194,51:25.2974,36:39.575,12:44.1624,23:47.5171,58:30.212,21:33.7719,11:30.2066,10:31.5329,15:38.7064,7:18.155,28:18.7235,46:40.4108,33:45.2607,55:38.8255,54:45.8687,25:35.6699,3:41.2425,49:16.502,41:19.2534,1:35.9905,26:28.374,44:42.5452,37:31.5292,56:46.1264,42:31.849,27:27.1421,50:17.6411,16:25.1866,40:22.6757,48:22.655,39:14.5456,9:17.4181,52:32.839,13:50.1312,43:40.1556,19:14.9991,59:13.206,2:38.3697,20:27.5425,18:16.1348,22:42.1944,35:38.758,57:35.347,45:47.1333,38:21.4903,47:25.6262,14:42.0688,53:42.0852}
{0:31.5071,31:43.7985,34:34.4368,4:45.5604,32:41.4138,5:42.8918,8:28.3337,6:33.7633,30:40.8501,24:20.7749,29:33.7993,17:39.3286,51:18.9879,36:32.6419,12:25.9952,23:26.0756,58:41.6298,21:29.1269,11:15.3482,10:16.1567,15:31.194,7:32.1046,28:25.9128,46:35.7771,33:36.2297,55:23.3894,54:17.2542,25:14.8812,3:38.6893,49:25.6021,41:25.6036,1:30.3462,26:21.2606,44:31.0956,37:18.9889,56:24.4656,42:29.9304,27:28.2754,50:28.2777,16:41.2203,40:19.3678,48:30.8219,39:19.314,9:22.8577,52:16.1107,13:26.9467,43:27.985,19:34.8559,59:40.1532,2:36.6107,20:39.2224,18:41.6774,22:26.1037,35:30.28,57:29.6396,45:34.0094,38:22.8559,47:37.4168,14:30.3955,53:14.3997}
{0:27.6388,31:29.3038,34:20.1702,4:39.6225,32:24.6391,5:33.2428,8:14.9493,6:31.9644,30:33.008,24:26.7165,29:36.4598,17:31.273,51:36.1273,36:31.9993,12:35.0749,23:27.1493,58:16.4481,21:17.9722,11:22.6485,10:22.4119,15:46.5702,7:26.2984,28:37.7306,46:16.0292,33:18.3406,55:25.9462,54:35.986,25:38.901,3:36.8213,49:39.4409,41:37.0118,1:41.6688,26:44.9105,44:21.1175,37:36.6776,56:20.7706,42:31.3474,27:47.4412,50:42.5749,16:45.0406,40:36.3792,48:27.0947,39:43.6607,9:16.5426,52:43.0568,13:32.0629,43:21.299,19:22.5754,59:24.7488,2:40.9344,20:16.326,18:26.8028,22:15.7631,35:16.4429,57:23.2863,45:13.9727,38:39.7713,47:26.9176,14:42.1071,53:42.4995}
{0:32.07,31:28.6364,34:42.2965,4:38.0722,32:29.853,5:37.3594,8:11.8143,6:26.1317,30:22.1259,24:49.8789,29:15.621,17:22.9657,51:18.6147,36:37.8995,12:46.5346,23:38.3771,58:29.3815,21:23.2729,11:32.5702,10:20.6026,15:41.0053,7:13.0016,28:15.3701,46:42.0035,33:37.2934,55:46.9311,54:40.8209,25:46.526,3:47.0233,49:15.7532,41:19.9275,1:35.927,26:38.8149,44:41.5582,37:31.8064,56:38.1265,42:30.0616,27:24.2987,50:10.0067,16:24.4386,40:18.9693,48:23.261,39:11.6247,9:13.1851,52:27.6506,13:46.8849,43:31.4037,19:22.1853,59:18.3166,2:46.0664,20:18.0982,18:21.3305,22:39.1643,35:47.0608,57:38.3925,45:46.1573,38:21.0852,47:36.9515,14:48.0136,53:28.8793}
{0:32.8485,31:34.6812,34:43.7137,4:38.9286,32:43.0026,5:45.4076,8:23.2227,6:33.8422,30:29.4401,24:18.1857,29:28.07,17:41.8805,51:35.8327,36:34.6971,12:14.8621,23:30.3348,58:17.937,21:35.1158,11:11.5571,10:14.5351,15:29.5489,7:30.8023,28:18.81,46:36.3099,33:41.2569,55:13.2201,54:21.2947,25:17.4701,3:44.172,49:44.402,41:17.2245,1:32.6025,26:20.6168,44:28.2579,37:32.011,56:11.114,42:17.638,27:17.1849,50:38.7069,16:32.9115,40:17.8578,48:39.6961,39:16.2748,9:24.3516,52:34.125,13:16.2949,43:26.9431,19:42.1549,59:24.2756,2:44.1224,20:43.6066,18:43.3745,22:29.2947,35:45.057,57:19.7152,45:29.1225,38:26.591,47:42.1851,14:19.733,53:25.8361}
{0:29.754,31:22.8614,34:16.2007,4:39.2134,32:21.2261,5:35.2695,8:22.3463,6:33.2825,30:38.7157,24:22.4263,29:38.1099,17:41.6544,51:35.4169,36:22.1374,12:34.0128,23:26.7196,58:23.4871,21:23.7475,11:22.7115,10:21.2992,15:42.1226,7:22.047,28:37.212,46:17.4168,33:17.9143,55:29.3852,54:41.1558,25:34.522,3:40.5504,49:26.5852,41:45.6258,1:36.7461,26:40.72,44:20.3447,37:25.989,56:24.103,42:30.5352,27:41.4645,50:30.5295,16:36.1492,40:46.6801,48:23.6633,39:38.0723,9:19.5624,52:43.1147,13:32.7474,43:33.1574,19:26.7906,59:18.7953,2:34.6286,20:20.8851,18:30.8434,22:20.409,35:20.4512,57:26.6137,45:24.133,38:35.9593,47:23.5009,14:33.3342,53:35.3654}
{0:33.2499,31:41.5146,34:34.4009,4:46.4239,32:43.3606,5:41.5376,8:23.3927,6:36.9618,30:39.1458,24:20.1469,29:34.7381,17:36.473,51:22.5084,36:23.8239,12:14.1816,23:22.7089,58:31.4135,21:28.5279,11:14.0547,10:22.6525,15:39.3093,7:31.5665,28:24.7445,46:43.3183,33:42.5441,55:18.5273,54:18.4152,25:23.121,3:35.8394,49:37.4503,41:25.3592,1:37.0387,26:24.9717,44:32.3876,37:24.9875,56:29.773,42:28.5526,27:24.6005,50:35.0737,16:34.7405,40:21.2743,48:35.5989,39:24.2214,9:23.5002,52:26.7123,13:18.4807,43:35.8624,19:34.9894,59:43.2634,2:33.8307,20:37.6656,18:46.6633,22:22.2917,35:31.4789,57:33.9627,45:40.6384,38:23.4311,47:40.4228,14:23.1592,53:16.3324}
{0:34.866,31:33.7653,34:36.9039,4:38.9525,32:38.9598,5:26.3406,8:22.8414,6:26.2779,30:23.4832,24:39.0817,29:19.4344,17:18.2058,51:20.3103,36:27.7873,12:39.3936,23:46.1023,58:26.381,21:32.6881,11:32.1421,10:24.384,15:37.2981,7:17.4786,28:17.7765,46:37.7751,33:36.9246,55:38.8837,54:42.5884,25:32.1304,3:37.1155,49:18.4058,41:33.357,1:37.2033,26:34.5745,44:46.918,37:21.3409,56:40.4569,42:35.6636,27:16.8289,50:21.5551,16:27.3327,40:26.3753,48:18.6142,39:16.878,9:18.2825,52:27.1387,13:39.6524,43:39.8499,19:21.8875,59:17.2159,2:37.6021,20:26.0695,18:12.9646,22:38.7865,35:32.7045,57:27.9889,45:38.2275,38:23.3078,47:27.8586,14:44.6648,53:35.6624}
{0:35.2035,31:29.8481,34:46.4199,4:33.8241,32:36.8477,5:31.908,8:17.7035,6:25.1495,30:14.7227,24:38.0681,29:20.4602,17:21.0756,51:21.7874,36:30.6525,12:36.8255,23:37.022,58:24.6032,21:33.7307,11:31.1333,10:26.6091,15:35.593,7:14.6118,28:22.7555,46:40.7067,33:37.4034,55:38.3417,54:42.6682,25:42.7154,3:42.1728,49:24.8581,41:19.4374,1:37.3285,26:28.3405,44:36.4538,37:25.6968,56:35.3498,42:25.4278,27:20.6781,50:15.254,16:26.3809,40:22.8206,48:21.7133,39:21.7989,9:21.8239,52:31.329,13:43.551,43:32.0002,19:20.0376,59:15.9912,2:38.2443,20:25.1575,18:15.3222,22:40.9874,35:41.7533,57:28.7492,45:36.355,38:17.4739,47:28.2642,14:39.8234,53:35.5845}
{0:29.0966,31:36.1131,34:18.1215,4:42.0107,32:25.4762,5:43.1734,8:14.2457,6:37.9001,30:39.8671,24:24.2713,29:43.3681,17:37.9898,51:25.5382,36:18.2763,12:29.733,23:14.0309,58:26.9205,21:15.8385,11:22.2626,10:19.2761,15:47.289,7:22.9514,28:44.6626,46:24.67,33:26.9889,55:42.678,54:42.71,25:25.3649,3:44.8088,49:23.8411,41:49.7645,1:32.2456,26:32.1028,44:28.1115,37:20.0719,56:37.9684,42:46.3279,27:40.4668,50:22.1446,16:45.6782,40:39.7309,48:12.2871,39:30.0059,9:20.9101,52:39.7498,13:35.6708,43:39.9572,19:28.7345,59:22.6955,2:42.8464,20:20.5433,18:43.4654,22:11.3742,35:10.774,57:37.6345,45:29.6589,38:26.9272,47:11.4743,14:40.6508,53:38.6521}
{0:30.6026,31:14.2826,34:27.4441,4:39.0556,32:19.8996,5:31.6838,8:15.1641,6:32.6279,30:21.1251,24:37.3769,29:24.982,17:32.2158,51:30.6739,36:37.5749,12:35.1712,23:30.7427,58:32.487,21:15.5137,11:30.8435,10:22.7437,15:43.3012,7:26.1194,28:29.0326,46:28.1088,33:25.486,55:21.5228,54:17.9631,25:44.3648,3:48.5191,49:40.8773,41:19.3797,1:32.5901,26:39.735,44:23.6236,37:44.3084,56:20.8976,42:19.6594,27:36.3637,50:40.4693,16:34.8629,40:31.4037,48:46.993,39:41.4362,9:13.6984,52:23.9784,13:44.1129,43:15.1039,19:20.8511,59:44.577,2:37.9136,20:21.3297,18:29.6659,22:19.8034,35:33.3133,57:28.3958,45:27.8709,38:42.6221,47:44.7615,14:39.5097,53:13.7305}
{0:28.9343,31:28.3298,34:12.5432,4:37.8738,32:27.3346,5:32.42,8:22.9692,6:34.5536,30:30.2036,24:21.0625,29:35.3188,17:43.4516,51:37.8406,36:21.6816,12:26.8727,23:18.9568,58:14.8612,21:15.7715,11:23.1734,10:17.7828,15:39.9035,7:21.907,28:39.8807,46:21.5573,33:18.9719,55:30.2583,54:35.0124,25:33.8114,3:45.6941,49:25.6788,41:42.041,1:38.5836,26:43.2818,44:21.2571,37:33.394,56:23.4928,42:37.6842,27:46.2368,50:37.2236,16:36.3162,40:39.195,48:18.5569,39:43.767,9:18.4397,52:48.088,13:36.3405,43:30.4695,19:21.0024,59:17.2173,2:35.7467,20:17.6787,18:31.2474,22:18.164,35:16.3812,57:15.093,45:13.4003,38:35.4495,47:17.3195,14:38.364,53:46.951}
{0:31.9525,31:13.5588,34:38.3313,4:33.8886,32:22.6072,5:31.6604,8:22.6107,6:27.242,30:20.8001,24:34.5612,29:20.0837,17:22.8608,51:24.3705,36:41.731,12:30.9359,23:37.753,58:44.0655,21:26.1455,11:27.7273,10:24.1668,15:42.1243,7:23.4285,28:27.0361,46:33.6126,33:28.1691,55:27.0703,54:21.7537,25:41.6792,3:40.0693,49:40.0668,41:23.8579,1:34.6294,26:42.2417,44:22.9443,37:34.9247,56:29.6967,42:15.2224,27:38.2841,50:29.6134,16:30.5826,40:20.509,48:34.9631,39:27.9848,9:23.6916,52:18.0091,13:36.6393,43:27.9981,19:18.5702,59:38.1459,2:41.1201,20:22.1494,18:21.3639,22:28.0886,35:40.9077,57:32.9133,45:38.9532,38:29.8962,47:41.5427,14:45.1425,53:22.6876}
{0:31.0256,31:32.6844,34:22.064,4:42.32,32:21.402,5:31.6997,8:20.8778,6:35.1004,30:31.1922,24:23.3539,29:41.1175,17:31.9066,51:45.3072,36:31.4056,12:25.1711,23:25.6413,58:12.3171,21:17.7303,11:23.1952,10:22.4419,15:41.7512,7:24.7022,28:39.7571,46:19.2507,33:16.8938,55:26.6766,54:35.6233,25:39.0119,3:41.096,49:24.5307,41:36.518,1:37.2065,26:33.3656,44:26.156,37:30.3655,56:19.4241,42:36.6348,27:36.77,50:34.2705,16:35.9021,40:43.3153,48:21.9805,39:37.7382,9:24.1232,52:36.9543,13:29.7732,43:34.4306,19:29.2289,59:20.7148,2:38.9794,20:15.2418,18:33.7481,22:19.7818,35:19.5271,57:18.8798,45:15.9816,38:36.9143,47:25.4982,14:39.6769,53:39.9395}
{0:26.8177,31:28.9082,34:17.3587,4:42.3945,32:25.288,5:42.095,8:26.4291,6:31.8504,30:37.1051,24:27.7929,29:44.6128,17:35.3769,51:29.2682,36:18.6193,12:29.4633,23:21.5859,58:17.0962,21:15.8631,11:18.653,10:16.8736,15:38.5427,7:29.5704,28:43.114,46:22.1472,33:17.4575,55:42.1848,54:36.8844,25:34.6204,3:43.3242,49:26.6374,41:45.2834,1:36.247,26:37.1484,44:30.646,37:30.7478,56:38.2532,42:34.7636,27:43.1207,50:32.8969,16:40.6096,40:44.1534,48:14.9493,39:33.6488,9:13.9468,52:43.4099,13:33.2647,43:33.5979,19:31.2921,59:20.0338,2:42.76,20:24.2228,18:35.92,22:22.402,35:13.4336,57:25.0578,45:22.2933,38:33.7329,47:12.6371,14:36.0939,53:43.5762}
{0:24.1212,31:24.9023,34:30.2435,4:38.8291,32:20.7698,5:32.6002,8:21.6196,6:30.2106,30:16.451,24:40.0547,29:19.5551,17:30.9747,51:27.9153,36:42.9342,12:34.279,23:40.2618,58:39.1259,21:25.3803,11:33.1998,10:24.8099,15:38.9918,7:24.4395,28:27.2238,46:43.1462,33:34.7747,55:33.3965,54:21.9833,25:38.3541,3:39.59,49:34.9131,41:24.5628,1:39.138,26:40.9271,44:25.8194,37:40.5618,56:35.1382,42:24.5469,27:30.0574,50:23.9198,16:38.8147,40:22.9078,48:36.124,39:22.1165,9:16.3847,52:13.8007,13:44.3566,43:24.3386,19:20.1696,59:39.8947,2:44.7903,20:20.1191,18:28.0701,22:30.2381,35:45.0205,57:35.6664,45:35.5894,38:33.8609,47:46.4495,14:35.4984,53:23.0402}
{0:27.2381,31:24.9742,34:16.1688,4:35.8772,32:18.6681,5:34.3964,8:22.2233,6:31.5676,30:38.9267,24:26.227,29:37.9341,17:41.6648,51:38.5444,36:19.2296,12:25.5158,23:15.832,58:20.162,21:18.3056,11:19.5147,10:13.4067,15:47.3925,7:29.2289,28:36.5804,46:15.4931,33:15.9754,55:36.5012,54:40.4899,25:35.2259,3:47.9814,49:23.4931,41:40.8663,1:33.0688,26:32.992,44:28.6749,37:31.8168,56:24.7778,42:42.2959,27:36.7741,50:30.568,16:45.3858,40:43.9554,48:21.9283,39:34.6447,9:13.3213,52:43.6723,13:32.8675,43:37.2861,19:22.8944,59:18.7329,2:35.5037,20:28.2007,18:34.6966,22:15.7062,35:24.0822,57:25.9279,45:24.6312,38:28.769,47:13.3221,14:40.8028,53:41.7671}
{0:29.6181,31:35.036,34:44.2709,4:44.6445,32:36.4738,5:41.1246,8:26.727,6:41.4001,30:27.1464,24:15.6544,29:25.4926,17:47.1987,51:31.0978,36:41.498,12:12.8942,23:22.1589,58:27.5373,21:31.8729,11:9.80804,10:19.5195,15:32.8095,7:36.0841,28:19.3073,46:39.6139,33:41.6348,55:21.3939,54:14.8607,25:11.7219,3:47.8926,49:46.9157,41:19.4836,1:41.2386,26:12.6076,44:24.5263,37:32.9224,56:19.3002,42:15.8079,27:17.44,50:40.9179,16:39.2279,40:17.1624,48:50.0985,39:19.9674,9:26.1316,52:25.2723,13:23.6048,43:18.0776,19:46.1304,59:33.6752,2:44.632,20:37.9118,18:41.6618,22:33.1485,35:46.0801,57:21.058,45:38.7108,38:19.76,47:38.7708,14:24.9783,53:19.1213}
{0:34.7518,31:29.916,34:20.3626,4:40.3342,32:22.7786,5:35.3339,8:22.5748,6:32.8157,30:26.9174,24:31.5657,29:40.6416,17:33.9709,51:45.1578,36:33.2931,12:32.8415,23:19.9011,58:20.177,21:20.3822,11:23.852,10:14.7442,15:43.9901,7:29.2201,28:39.2993,46:14.338,33:22.6408,55:20.5122,54:31.913,25:36.6357,3:39.0104,49:28.2566,41:38.9795,1:37.8581,26:38.4958,44:23.848,37:39.6588,56:23.3023,42:37.3862,27:44.0208,50:39.5542,16:41.1524,40:42.2019,48:28.3407,39:39.3124,9:15.4523,52:45.5955,13:37.8022,43:28.8823,19:30.4667,59:25.4505,2:33.9115,20:21.9371,18:29.8271,22:18.888,35:25.0666,57:18.7024,45:23.9066,38:40.725,47:23.1383,14:44.5937,53:31.2422}
{0:30.4502,31:43.1544,34:38.4454,4:45.2692,32:38.9747,5:42.8967,8:23.3423,6:40.4848,30:46.7421,24:10.7228,29:33.8913,17:49.0463,51:11.555,36:23.8754,12:24.2661,23:12.3118,58:43.5813,21:26.0026,11:10.972,10:18.4559,15:33.5516,7:25.8616,28:32.2466,46:40.3258,33:40.944,55:32.3923,54:22.3995,25:13.9319,3:47.5008,49:23.4585,41:27.4615,1:39.1266,26:18.77,44:43.4862,37:12.749,56:36.6823,42:31.5406,27:21.4354,50:24.2058,16:47.2281,40:24.084,48:35.6165,39:17.4854,9:19.4595,52:20.332,13:26.5284,43:36.2441,19:35.0389,59:44.2187,2:41.8917,20:33.1257,18:49.5643,22:15.716,35:31.5541,57:38.4867,45:42.6993,38:16.5329,47:38.7832,14:28.8131,53:13.7037}
{0:24.4293,31:35.4524,34:23.9494,4:37.17,32:30.9297,5:36.6564,8:24.0386,6:37.6492,30:40.821,24:21.9714,29:37.635,17:40.9319,51:28.5198,36:24.3919,12:27.2994,23:16.775,58:31.9421,21:28.0779,11:21.3349,10:18.5594,15:33.9412,7:23.9352,28:35.8967,46:32.6883,33:35.3715,55:43.5375,54:31.5094,25:22.6046,3:45.9506,49:24.9524,41:36.0491,1:39.7616,26:34.0883,44:40.7295,37:19.1855,56:37.4759,42:41.6027,27:37.9202,50:25.3634,16:35.2246,40:35.9995,48:20.4315,39:29.46,9:21.3343,52:29.0868,13:32.0006,43:34.3697,19:29.4594,59:32.8973,2:40.1207,20:24.6605,18:42.6484,22:21.685,35:22.3958,57:42.3223,45:33.8878,38:29.1486,47:26.3955,14:35.9327,53:34.1211}
{0:27.0957,31:20.5295,34:36.492,4:43.0262,32:29.4646,5:29.2457,8:15.2671,6:22.4244,30:21.9233,24:42.3083,29:22.8434,17:21.878,51:11.9278,36:43.8244,12:34.6858,23:33.9909,58:36.5624,21:21.4538,11:31.7798,10:28.0592,15:42.858,7:22.0992,28:29.5048,46:40.7768,33:29.1772,55:33.5085,54:23.2335,25:38.9634,3:44.6437,49:35.1573,41:12.1337,1:32.1208,26:42.0963,44:35.5802,37:42.8789,56:45.5429,42:25.3245,27:27.0734,50:23.4253,16:28.6596,40:20.785,48:41.8406,39:20.8253,9:22.1804,52:10.8316,13:46.5108,43:30.8716,19:21.108,59:42.5511,2:41.3884,20:18.5661,18:20.2123,22:30.0997,35:39.5518,57:46.1017,45:40.385,38:33.5313,47:40.477,14:45.1019,53:15.7002}
{0:33.28,31:20.4962,34:29.074,4:45.6483,32:20.5249,5:36.8369,8:22.3216,6:31.7404,30:24.7731,24:31.8187,29:30.0256,17:33.0415,51:37.0021,36:42.3352,12:35.1442,23:25.6344,58:29.8211,21:16.0097,11:19.822,10:24.4459,15:41.1945,7:25.3062,28:37.5934,46:25.0981,33:22.914,55:13.7251,54:17.4369,25:45.5574,3:38.4934,49:41.8822,41:24.954,1:31.7139,26:37.7153,44:14.4022,37:47.7195,56:17.3254,42:17.2334,27:37.4709,50:44.5929,16:35.7095,40:32.0601,48:44.7335,39:38.5376,9:21.4503,52:38.1604,13:42.0838,43:14.915,19:21.2648,59:30.1182,2:40.0542,20:19.2317,18:31.212,22:22.7469,35:27.1797,57:23.7679,45:23.7793,38:46.1196,47:28.3379,14:41.2696,53:25.0817}
{0:32.3175,31:45.5823,34:31.413,4:36.5269,32:44.3196,5:35.9285,8:30.8736,6:36.4151,30:34.0609,24:22.6191,29:35.1708,17:38.8306,51:23.6666,36:30.7444,12:25.6087,23:27.5674,58:41.7112,21:28.8007,11:24.0689,10:17.4796,15:30.5855,7:24.7463,28:33.6677,46:37.3267,33:34.1341,55:21.5906,54:16.8775,25:24.8834,3:36.9174,49:28.8087,41:19.5205,1:39.9719,26:27.5658,44:40.7749,37:18.422,56:28.4799,42:31.514,27:28.4074,50:21.1383,16:41.4506,40:20.8873,48:30.3454,39:23.6823,9:25.3094,52:16.7965,13:27.306,43:31.4149,19:37.5073,59:35.3453,2:40.6855,20:37.9685,18:38.5291,22:28.5452,35:28.7343,57:28.8281,45:36.4495,38:23.227,47:37.2455,14:28.46,53:16.2003}
{0:35.2861,31:40.9751,34:26.5036,4:33.6134,32:40.848,5:34.167,8:24.4984,6:28.4885,30:43.7824,24:21.6016,29:39.9736,17:38.4359,51:16.6126,36:25.4816,12:29.7026,23:18.4092,58:42.1424,21:31.1885,11:22.932,10:15.8835,15:31.835,7:32.2912,28:31.5583,46:38.7742,33:38.1816,55:35.718,54:27.9105,25:27.2044,3:42.5375,49:21.4722,41:34.5771,1:30.1693,26:28.9701,44:44.7351,37:24.6209,56:36.0142,42:40.2469,27:26.2583,50:17.729,16:41.696,40:30.8285,48:31.8327,39:22.0492,9:23.9583,52:21.6958,13:33.5952,43:43.7121,19:38.5515,59:32.0592,2:39.4484,20:34.9461,18:42.8051,22:19.0131,35:28.0058,57:34.735,45:34.5975,38:17.351,47:31.9872,14:38.4932,53:23.6195}
{0:26.821,31:25.9102,34:44.4293,4:33.4887,32:37.3782,5:28.3824,8:22.873,6:25.4047,30:20.4097,24:35.4705,29:21.9196,17:17.7239,51:24.2131,36:24.3869,12:42.9812,23:41.8697,58:15.9237,21:36.1941,11:38.7773,10:30.5443,15:28.6585,7:15.416,28:15.4935,46:27.4292,33:43.8211,55:38.0366,54:40.2941,25:36.7043,3:39.5939,49:20.3389,41:30.2719,1:39.9874,26:30.6348,44:39.2259,37:24.1532,56:38.7868,42:33.9718,27:17.4391,50:16.1112,16:29.8744,40:28.3463,48:24.6169,39:22.6591,9:17.3458,52:30.3887,13:40.6694,43:45.7586,19:18.9026,59:12.8022,2:45.6618,20:25.8529,18:24.481,22:41.0276,35:41.6217,57:30.0894,45:43.3521,38:13.3121,47:18.834,14:33.1481,53:36.5793}
{0:25.3437,31:21.5332,34:46.5312,4:42.5053,32:27.4375,5:32.7023,8:21.3176,6:27.069,30:11.0502,24:44.423,29:21.7737,17:25.99,51:20.0886,36:37.1504,12:45.5687,23:36.9964,58:43.9021,21:27.7116,11:30.2757,10:26.7314,15:39.7253,7:22.3364,28:26.6523,46:40.8189,33:42.5336,55:40.9387,54:31.4907,25:43.2376,3:39.9892,49:22.6462,41:21.5582,1:34.293,26:30.956,44:39.8051,37:30.8607,56:48.5442,42:24.8324,27:23.6792,50:12.8988,16:36.5967,40:14.1386,48:29.5666,39:23.3207,9:17.8632,52:17.8615,13:38.7466,43:27.0154,19:16.0105,59:35.1827,2:38.2116,20:13.8256,18:13.0739,22:28.5977,35:49.4928,57:42.9061,45:45.779,38:26.715,47:35.4252,14:44.3744,53:25.0158}
{0:24.3566,31:37.9929,34:21.7048,4:46.0926,32:40.2147,5:34.0541,8:26.8938,6:33.261,30:45.7775,24:16.5696,29:45.5368,17:38.0542,51:17.8939,36:15.6256,12:23.2936,23:14.1633,58:35.8699,21:27.0008,11:16.9906,10:12.1574,15:41.7359,7:31.3628,28:41.38,46:28.0556,33:30.7053,55:41.4326,54:39.1376,25:18.0427,3:46.7903,49:19.1346,41:36.8474,1:36.5163,26:25.5086,44:41.7918,37:20.1134,56:37.4663,42:36.8295,27:34.0165,50:17.0958,16:47.8879,40:34.1121,48:16.2418,39:22.4561,9:12.6914,52:17.4148,13:22.8489,43:42.359,19:37.9045,59:33.4728,2:38.6025,20:28.2295,18:44.5395,22:15.9992,35:26.0713,57:44.7348,45:33.1681,38:16.9003,47:25.5528,14:35.8733,53:28.5712}
{0:30.4656,31:22.3774,34:16.4699,4:38.9709,32:22.4962,5:38.1865,8:23.3157,6:25.2559,30:32.4865,24:29.3214,29:40.5679,17:34.5424,51:37.3244,36:27.3175,12:30.4076,23:23.4665,58:25.1892,21:14.5922,11:18.8206,10:13.9611,15:41.1181,7:20.7731,28:34.8418,46:24.4679,33:14.3913,55:17.0563,54:31.8965,25:40.882,3:38.9044,49:43.2478,41:34.5067,1:31.762,26:36.2945,44:13.5021,37:43.7743,56:15.2779,42:26.1874,27:47.1997,50:46.1784,16:39.4811,40:35.0621,48:34.5562,39:38.8555,9:14.3041,52:41.8288,13:35.1663,43:16.7925,19:22.0734,59:27.4536,2:46.6635,20:14.419,18:31.6275,22:17.5726,35:23.9059,57:15.4991,45:15.3371,38:36.3488,47:24.7941,14:43.6501,53:37.71}
{0:27.7996,31:29.5745,34:23.2375,4:44.0251,32:23.1386,5:35.2849,8:19.8578,6:26.0516,30:36.9434,24:22.7322,29:37.7999,17:42.6888,51:36.1164,36:26.9827,12:32.6327,23:19.5537,58:22.4433,21:22.1948,11:19.5872,10:16.1298,15:39.5351,7:32.4237,28:44.5665,46:21.8369,33:21.8949,55:39.6157,54:35.0526,25:26.4435,3:46.0903,49:19.1767,41:43.7525,1:30.405,26:36.3716,44:28.066,37:20.3099,56:30.7268,42:34.4246,27:34.8338,50:21.2739,16:45.131,40:37.7439,48:24.9829,39:36.0068,9:14.6441,52:33.4789,13:32.9863,43:34.3078,19:28.9766,59:25.9781,2:44.5422,20:21.1118,18:35.4296,22:25.2844,35:24.7425,57:34.7923,45:24.8774,38:29.5038,47:23.8019,14:31.6707,53:43.2495}
{0:25.308,31:33.2198,34:34.0421,4:40.6583,32:35.1378,5:36.248,8:31.7161,6:35.0834,30:27.585,24:27.6219,29:22.7895,17:35.8726,51:37.0052,36:32.3544,12:15.7093,23:21.7858,58:19.253,21:34.9884,11:16.454,10:16.0791,15:34.2265,7:26.7755,28:19.5669,46:41.0386,33:40.7376,55:20.4371,54:19.934,25:21.0688,3:40.5428,49:43.1258,41:22.0454,1:39.1094,26:19.8814,44:23.617,37:31.7894,56:19.098,42:19.947,27:26.0437,50:34.1438,16:33.4233,40:23.563,48:45.6733,39:24.2168,9:24.3675,52:24.9664,13:25.9926,43:23.8918,19:40.1658,59:28.5972,2:37.0313,20:42.1519,18:39.241,22:28.1219,35:33.8796,57:20.5303,45:26.276,38:31.9164,47:43.3317,14:31.8971,53:20.9687}
{0:24.7381,31:23.368,34:38.8354,4:39.3667,32:33.9209,5:35.1001,8:25.0595,6:25.614,30:14.6338,24:36.3593,29:15.7588,17:23.62,51:19.9014,36:39.2509,12:38.9718,23:40.9839,58:32.1575,21:21.1685,11:32.2716,10:27.7047,15:31.7307,7:24.6833,28:29.2625,46:44.1626,33:31.143,55:31.5464,54:28.3815,25:43.1952,3:45.4828,49:27.7123,41:20.9901,1:38.8324,26:39.113,44:35.6549,37:28.8652,56:40.6665,42:20.4098,27:28.7579,50:26.2248,16:33.6418,40:21.6254,48:33.7887,39:18.1286,9:22.1634,52:24.2568,13:45.1165,43:33.1032,19:25.4688,59:31.5037,2:45.2444,20:18.6195,18:19.7335,22:32.4975,35:43.3231,57:39.187,45:44.2123,38:33.3156,47:35.0995,14:42.8549,53:28.2048}
{0:35.9258,31:23.0264,34:42.8595,4:33.0051,32:28.5491,5:32.8896,8:15.4679,6:20.6579,30:21.8593,24:38.9337,29:18.8524,17:19.4187,51:23.608,36:40.6436,12:44.262,23:39.7761,58:26.1019,21:35.1031,11:36.15,10:20.8808,15:29.7262,7:14.713,28:19.1861,46:42.4148,33:44.0749,55:43.5977,54:34.5492,25:32.6482,3:41.6699,49:16.5024,41:26.0639,1:34.3601,26:36.6745,44:40.7255,37:34.3019,56:43.6723,42:34.8423,27:23.9739,50:19.6711,16:33.4035,40:18.4738,48:19.7363,39:22.1737,9:19.4486,52:29.2072,13:45.4064,43:30.3571,19:18.7687,59:21.0406,2:36.8129,20:23.8189,18:19.8111,22:35.8554,35:45.1513,57:40.8966,45:35.3295,38:17.9363,47:26.8759,14:44.5532,53:35.9468}
{0:32.716,31:19.2532,34:27.1488,4:36.7692,32:19.4648,5:34.8305,8:16.8035,6:26.4752,30:24.4247,24:30.4139,29:32.4509,17:36.9788,51:37.242,36:33.0809,12:38.3421,23:26.4264,58:24.1314,21:19.289,11:28.4405,10:13.8694,15:45.1278,7:18.6752,28:39.4389,46:31.3013,33:14.4983,55:20.8374,54:24.2303,25:39.9704,3:41.2031,49:42.828,41:26.4771,1:34.4624,26:45.2465,44:14.7964,37:44.4197,56:17.104,42:17.2278,27:43.227,50:38.9108,16:45.0149,40:35.9552,48:44.5885,39:45.175,9:15.0381,52:25.7467,13:45.2852,43:14.9977,19:19.8534,59:31.488,2:39.9308,20:12.8856,18:28.1217,22:24.9619,35:30.6762,57:20.6524,45:22.3719,38:44.9099,47:37.8703,14:45.0892,53:22.6635}
{0:35.7896,31:24.6417,34:15.9996,4:42.2311,32:16.0315,5:33.7903,8:24.2927,6:35.1347,30:32.9642,24:28.6112,29:46.0064,17:40.6796,51:47.8093,36:27.7257,12:29.3135,23:18.2701,58:12.4358,21:21.7104,11:19.9092,10:22.8484,15:38.9158,7:27.8393,28:38.1091,46:20.4881,33:13.518,55:36.2955,54:36.8111,25:36.0023,3:40.1131,49:24.8868,41:43.3758,1:32.3795,26:36.3948,44:19.5715,37:31.6165,56:21.3112,42:36.4053,27:47.342,50:35.5865,16:37.8845,40:50.2515,48:27.2939,39:37.8052,9:20.9103,52:40.2979,13:29.5942,43:33.8402,19:31.4955,59:10.9356,2:38.436,20:24.2423,18:33.2358,22:11.0473,35:17.7003,57:21.6274,45:16.4226,38:39.578,47:18.8864,14:39.8753,53:37.7722}
{0:29.8142,31:15.6122,34:29.8755,4:44.9079,32:13.1802,5:34.9695,8:11.79,6:29.2922,30:25.0499,24:41.3321,29:26.5946,17:31.2325,51:35.1446,36:35.5487,12:31.3778,23:34.7075,58:38.2354,21:20.9502,11:32.0059,10:24.7539,15:47.2495,7:25.0674,28:39.3666,46:34.6789,33:14.2604,55:20.6933,54:16.4736,25:37.827,3:44.5742,49:43.5751,41:25.5456,1:37.6585,26:40.9794,44:19.4976,37:47.8542,56:22.6032,42:15.8462,27:37.4774,50:44.5902,16:40.5009,40:28.2006,48:48.8496,39:35.3484,9:20.3221,52:22.9514,13:44.9408,43:20.8775,19:12.9848,59:42.6176,2:40.596,20:20.6605,18:19.8518,22:24.0231,35:29.9838,57:23.802,45:19.214,38:43.504,47:39.7521,14:50.1125,53:17.954}
{0:26.2753,31:31.1475,34:17.3013,4:35.8042,32:34.0017,5:38.0698,8:18.6551,6:37.8979,30:34.7215,24:23.7111,29:37.6833,17:35.5137,51:26.9136,36:16.9973,12:26.7887,23:14.1643,58:27.3192,21:23.9289,11:16.774,10:13.7404,15:38.2388,7:22.6653,28:44.6031,46:23.9627,33:27.4072,55:39.6012,54:47.4567,25:23.8931,3:44.7994,49:19.4595,41:36.2323,1:32.992,26:35.7854,44:29.55,37:26.4973,56:33.75,42:38.622,27:44.1221,50:25.1915,16:45.675,40:41.7641,48:23.1248,39:36.8745,9:19.9587,52:31.1622,13:30.7915,43:33.6377,19:35.6635,59:25.5401,2:42.9596,20:23.1249,18:33.3507,22:23.0953,35:19.2803,57:26.4614,45:22.1039,38:26.5086,47:14.9599,14:37.7107,53:45.0925}
{0:33.41,31:23.2041,34:24.5569,4:41.7184,32:23.2589,5:38.9634,8:13.4399,6:23.2206,30:21.8096,24:37.9469,29:32.9727,17:33.6843,51:38.6145,36:41.2972,12:32.4146,23:23.46,58:32.0284,21:23.871,11:23.8021,10:22.1868,15:43.1989,7:27.688,28:36.753,46:29.9379,33:23.9389,55:22.099,54:14.7844,25:35.7747,3:46.4694,49:36.2004,41:32.8034,1:33.4254,26:37.2175,44:20.3446,37:45.9104,56:17.9578,42:24.1583,27:38.7794,50:45.3458,16:37.47,40:34.8004,48:37.2604,39:44.3204,9:14.1763,52:25.8346,13:40.3452,43:12.7402,19:21.517,59:32.8216,2:42.5327,20:19.3608,18:22.3874,22:24.4554,35:29.3372,57:27.1539,45:25.2639,38:43.5796,47:35.835,14:44.1663,53:25.5507}
{0:25.9852,31:41.3889,34:29.9237,4:44.8727,32:37.1855,5:38.9719,8:25.4375,6:38.0508,30:41.988,24:17.7336,29:35.0906,17:41.4877,51:18.4936,36:17.2346,12:18.4486,23:16.8551,58:38.9042,21:23.9026,11:19.5645,10:20.3892,15:42.2632,7:23.9616,28:37.4139,46:39.3151,33:36.36,55:36.6527,54:30.4536,25:22.0427,3:34.5155,49:26.7418,41:27.2989,1:30.3829,26:20.3093,44:39.2071,37:20.7388,56:37.347,42:40.8161,27:31.8121,50:15.2704,16:42.0686,40:25.9828,48:25.2671,39:21.6715,9:23.8909,52:21.8752,13:22.5862,43:34.473,19:33.4379,59:36.7101,2:34.8524,20:35.1696,18:35.2049,22:20.3071,35:21.8404,57:38.5922,45:42.1319,38:21.3777,47:30.5356,14:30.0838,53:26.1425}
{0:30.4263,31:23.4232,34:11.9169,4:40.0309,32:23.3557,5:33.1004,8:18.2161,6:36.0582,30:35.9683,24:28.9077,29:44.3824,17:33.7069,51:41.2004,36:30.6258,12:30.175,23:25.3971,58:13.441,21:14.7332,11:23.664,10:17.1544,15:47.1703,7:23.3431,28:39.8404,46:11.3342,33:13.5064,55:24.3277,54:33.6045,25:31.2821,3:48.9582,49:30.392,41:34.7035,1:31.6327,26:38.6375,44:20.2692,37:29.6697,56:21.3865,42:34.7343,27:43.3876,50:37.3136,16:40.0633,40:48.6625,48:25.7879,39:47.4906,9:13.2019,52:48.7232,13:37.0568,43:22.2885,19:27.8554,59:23.6507,2:46.6698,20:18.8463,18:31.2085,22:20.996,35:25.3355,57:12.8611,45:22.1443,38:37.7853,47:16.0277,14:45.0795,53:41.375}
{0:24.1847,31:40.0787,34:37.2995,4:46.5885,32:44.2849,5:46.6013,8:23.6288,6:32.8805,30:38.0932,24:24.4921,29:30.5418,17:43.2106,51:32.0781,36:36.8056,12:23.9686,23:21.0833,58:27.3388,21:41.0922,11:17.3334,10:12.7073,15:36.8414,7:31.1499,28:19.2725,46:35.0983,33:40.4234,55:11.5735,54:14.8307,25:16.6965,3:47.8299,49:35.5152,41:22.2866,1:34.7777,26:14.6607,44:30.4205,37:22.9298,56:12.7388,42:22.6476,27:23.3559,50:37.0053,16:35.765,40:21.3324,48:43.6555,39:22.0484,9:26.0118,52:25.8186,13:24.4537,43:22.2954,19:43.6868,59:36.7612,2:34.6964,20:36.2016,18:43.0446,22:29.1629,35:41.6467,57:21.701,45:31.3322,38:19.2132,47:46.2959,14:30.9613,53:21.2632}
{0:33.9553,31:37.7029,34:29.36,4:37.6077,32:32.0916,5:41.1157,8:20.0405,6:34.7775,30:43.6692,24:23.2067,29:39.7788,17:46.4331,51:18.7108,36:19.2527,12:26.0043,23:21.6598,58:31.422,21:23.7045,11:24.0288,10:23.3044,15:41.2757,7:22.8503,28:38.1986,46:30.6749,33:24.8689,55:43.5271,54:37.3157,25:26.9517,3:40.1896,49:21.6195,41:36.3816,1:32.5771,26:34.7368,44:36.2852,37:24.1359,56:46.062,42:44.3502,27:34.3904,50:15.7511,16:40.6317,40:29.9737,48:19.0561,39:23.1186,9:16.4381,52:25.5103,13:31.1739,43:45.7122,19:34.782,59:32.8345,2:37.6761,20:30.7004,18:42.7369,22:24.4069,35:23.4851,57:36.0117,45:32.1303,38:21.408,47:23.056,14:39.5377,53:38.8963}
{0:31.8398,31:44.1298,34:36.8477,4:39.7943,32:41.2562,5:46.0563,8:26.5168,6:30.5996,30:42.283,24:22.4211,29:29.4344,17:43.2708,51:18.6947,36:24.5302,12:16.8223,23:21.2626,58:34.5126,21:35.8161,11:15.8159,10:20.4492,15:38.463,7:30.3578,28:31.5214,46:42.951,33:41.1775,55:20.9214,54:16.638,25:11.2571,3:48.4909,49:30.8763,41:21.2638,1:39.7644,26:20.1158,44:42.284,37:24.6996,56:19.0474,42:22.3717,27:21.9945,50:24.9357,16:39.3005,40:15.8928,48:36.9653,39:19.546,9:22.0041,52:22.3683,13:26.1001,43:26.7268,19:45.9229,59:43.6559,2:42.3454,20:41.669,18:48.2773,22:20.6378,35:31.3528,57:28.1877,45:41.4001,38:16.5617,47:42.0196,14:33.2104,53:12.2241}
{0:29.7213,31:18.5372,34:47.7122,4:34.6856,32:32.067,5:27.065,8:22.3648,6:26.059,30:19.8944,24:37.6852,29:16.3684,17:27.605,51:12.8802,36:34.7605,12:34.792,23:35.1199,58:35.7092,21:24.5474,11:31.0608,10:24.339,15:39.8327,7:15.9149,28:24.8217,46:44.5357,33:32.8928,55:45.8045,54:35.0303,25:40.6482,3:44.5727,49:25.7023,41:13.035,1:42.3627,26:41.2162,44:35.0886,37:29.6624,56:47.9082,42:28.2252,27:24.9769,50:17.382,16:34.7446,40:13.2058,48:32.4687,39:17.0298,9:18.157,52:21.2238,13:39.9518,43:33.3776,19:11.5428,59:23.9391,2:36.3361,20:19.5986,18:19.3989,22:32.6573,35:47.8011,57:44.7344,45:45.3628,38:26.2625,47:33.1756,14:43.4183,53:28.3215}
{0:32.8441,31:44.4558,34:45.3246,4:44.0382,32:36.8819,5:41.4539,8:30.584,6:38.8912,30:32.6278,24:24.9243,29:26.2296,17:36.3716,51:32.9582,36:28.4996,12:16.3178,23:22.8033,58:31.7591,21:32.5354,11:17.6862,10:12.593,15:33.0972,7:37.8997,28:23.39,46:37.9659,33:43.5822,55:21.0096,54:20.3114,25:18.1188,3:46.2115,49:39.0573,41:18.2719,1:35.408,26:21.9585,44:26.0842,37:29.6699,56:17.2589,42:19.129,27:24.4415,50:38.5936,16:33.6184,40:19.5544,48:45.4164,39:21.056,9:26.3553,52:29.1983,13:22.9099,43:29.6352,19:49.1555,59:28.5306,2:40.9221,20:40.7177,18:39.5662,22:31.2305,35:40.7702,57:17.3894,45:39.3331,38:20.8751,47:38.9607,14:25.7019,53:26.0044}
{0:27.1111,31:24.483,34:33.1216,4:42.0513,32:21.8046,5:32.2969,8:15.3987,6:31.0709,30:18.8692,24:41.4394,29:16.0973,17:28.64,51:17.1169,36:35.5945,12:42.084,23:40.9001,58:42.6213,21:30.6085,11:27.6713,10:19.1427,15:34.6315,7:20.229,28:23.4596,46:40.0589,33:27.5689,55:32.1095,54:25.5686,25:43.6026,3:36.5439,49:22.7518,41:13.9936,1:34.0624,26:39.4725,44:38.7226,37:35.6738,56:44.4332,42:28.1488,27:28.2489,50:18.6092,16:29.3749,40:18.2133,48:33.4865,39:28.054,9:24.602,52:21.567,13:39.7743,43:22.0607,19:23.3278,59:38.7247,2:38.6419,20:25.1729,18:15.9529,22:26.2048,35:43.6293,57:43.6132,45:34.8596,38:29.2665,47:35.5494,14:36.7332,53:17.7808}
{0:29.0875,31:17.3178,34:25.5213,4:45.5096,32:14.0001,5:40.0179,8:14.4476,6:30.7446,30:20.1667,24:37.4641,29:23.6609,17:30.0492,51:27.906,36:40.5433,12:35.0993,23:37.0265,58:45.1036,21:20.6705,11:23.7057,10:19.8003,15:45.1533,7:23.2357,28:29.419,46:38.4579,33:22.6078,55:22.1681,54:20.0701,25:45.6748,3:39.3954,49:38.6107,41:19.2215,1:32.8862,26:47.0213,44:27.5786,37:48.4447,56:25.3195,42:22.2638,27:39.5001,50:39.2059,16:42.3772,40:28.8677,48:49.0474,39:34.9232,9:22.6805,52:27.8161,13:43.2125,43:12.4436,19:19.6269,59:42.5741,2:46.6395,20:21.9391,18:25.5925,22:26.3571,35:33.0804,57:34.2882,45:27.6151,38:41.3228,47:44.6021,14:42.9126,53:22.8421}
{0:26.3693,31:41.3308,34:20.3077,4:36.7276,32:28.9584,5:35.0793,8:20.6103,6:30.6678,30:43.987,24:17.4618,29:41.9465,17:37.1928,51:19.6106,36:12.1485,12:19.1172,23:13.5048,58:32.5926,21:22.3244,11:14.0738,10:15.4591,15:40.715,7:24.7547,28:42.1081,46:33.1449,33:23.664,55:38.9636,54:36.5698,25:24.2869,3:39.6942,49:19.0527,41:36.2051,1:37.7914,26:27.3976,44:35.4149,37:15.7679,56:36.946,42:42.3642,27:38.5768,50:24.3827,16:39.5428,40:33.2024,48:23.0618,39:32.5792,9:18.8854,52:25.2178,13:34.2304,43:40.6006,19:30.8291,59:31.5626,2:41.8385,20:25.2726,18:39.4483,22:19.8008,35:22.2438,57:36.9,45:39.5762,38:18.9637,47:19.9359,14:32.2018,53:38.8595}
{0:30.0852,31:29.5992,34:36.198,4:32.5587,32:34.2757,5:29.5027,8:23.2076,6:29.1632,30:24.468,24:41.6821,29:14.3251,17:22.4143,51:24.0083,36:31.9839,12:34.5538,23:36.3599,58:28.3935,21:34.1067,11:33.8091,10:21.3557,15:35.6464,7:22.4555,28:17.7568,46:42.4951,33:39.1944,55:42.5152,54:35.2665,25:31.2384,3:44.7302,49:17.3796,41:23.5272,1:34.4054,26:33.9636,44:41.5397,37:29.8793,56:33.1512,42:27.7608,27:21.7661,50:16.851,16:30.7109,40:25.7188,48:22.702,39:20.9663,9:26.907,52:29.8584,13:37.2629,43:36.303,19:18.6312,59:21.5382,2:42.2759,20:20.4955,18:18.0548,22:31.0022,35:38.9495,57:29.791,45:43.2173,38:16.9011,47:30.0285,14:43.986,53:35.0486}
{0:32.4431,31:29.3536,34:45.0304,4:36.1537,32:44.5924,5:29.9644,8:17.6589,6:20.5353,30:18.857,24:40.3894,29:21.9149,17:16.6075,51:23.9707,36:25.3791,12:44.4409,23:47.6013,58:16.3833,21:39.9323,11:33.8381,10:28.3813,15:31.6024,7:16.9501,28:22.6509,46:31.4066,33:44.9225,55:36.7134,54:38.7201,25:40.1628,3:43.3994,49:22.7098,41:30.8274,1:42.6474,26:32.5887,44:39.2322,37:23.67,56:29.2307,42:31.886,27:16.8144,50:24.411,16:27.5346,40:17.4213,48:18.1839,39:21.1524,9:17.9669,52:31.4605,13:46.9492,43:39.7042,19:22.054,59:21.0229,2:35.9781,20:24.5292,18:21.8526,22:40.792,35:36.4588,57:19.4191,45:36.4444,38:13.405,47:23.5269,14:39.0773,53:43.9825}
{0:24.3918,31:13.4576,34:22.9262,4:37.3181,32:20.5581,5:34.6266,8:14.9215,6:24.4798,30:20.2434,24:42.2747,29:22.8932,17:27.7354,51:27.9314,36:36.2683,12:35.6423,23:35.0272,58:39.7664,21:20.6191,11:21.395,10:14.7964,15:38.1121,7:25.3016,28:31.1956,46:28.8983,33:20.0322,55:23.2277,54:16.7338,25:47.5621,3:48.3742,49:43.9386,41:26.6509,1:36.9381,26:46.2217,44:24.5684,37:38.1313,56:28.082,42:24.2126,27:43.4303,50:39.0099,16:37.6857,40:24.631,48:48.4558,39:33.485,9:12.8385,52:27.4809,13:37.343,43:13.8983,19:18.1479,59:38.8657,2:43.4671,20:12.1962,18:18.889,22:19.2287,35:38.0431,57:23.5618,45:26.3132,38:43.531,47:32.8437,14:37.485,53:21.0781}
{0:35.3886,31:46.9544,34:37.2685,4:49.524,32:43.1349,5:40.9418,8:26.2527,6:42.369,30:37.8675,24:13.7026,29:37.8699,17:43.3492,51:19.9349,36:24.3118,12:21.8371,23:22.7374,58:30.1459,21:28.0555,11:19.6929,10:19.8854,15:29.7983,7:30.1531,28:25.4777,46:47.8467,33:41.2859,55:13.4592,54:12.6295,25:14.0234,3:43.0335,49:38.4488,41:16.147,1:31.1781,26:22.1151,44:38.7162,37:21.7426,56:18.9672,42:30.0197,27:23.7195,50:33.1053,16:43.4008,40:10.8815,48:39.3609,39:21.6677,9:23.1775,52:14.9612,13:26.858,43:28.4724,19:43.868,59:45.5273,2:40.0412,20:44.0174,18:48.2375,22:25.2838,35:29.3465,57:35.4734,45:44.6195,38:19.1515,47:48.8456,14:23.5333,53:12.1486}
{0:24.1766,31:33.2743,34:37.8911,4:40.8786,32:37.0979,5:32.8647,8:17.3529,6:16.2863,30:27.9991,24:35.633,29:21.189,17:19.235,51:34.0129,36:29.0386,12:47.244,23:47.5869,58:14.6178,21:32.6311,11:39.6846,10:29.6056,15:35.3891,7:15.6584,28:20.8414,46:19.4891,33:46.9395,55:26.4478,54:38.2219,25:29.2271,3:48.2486,49:18.2937,41:36.3436,1:39.0044,26:25.5368,44:34.6662,37:18.0151,56:20.689,42:42.4115,27:16.9426,50:26.5135,16:20.1312,40:31.4764,48:14.161,39:26.29,9:22.4531,52:40.3288,13:38.4427,43:39.2835,19:21.353,59:14.3818,2:48.2963,20:31.2285,18:16.6598,22:47.9165,35:31.1203,57:17.7139,45:27.746,38:21.4667,47:17.4662,14:42.7575,53:38.4396}
{0:27.648,31:17.5332,34:13.7189,4:41.1317,32:16.3427,5:33.9477,8:19.6424,6:29.1796,30:27.5907,24:36.3659,29:36.7131,17:40.0931,51:42.9841,36:31.8794,12:27.5997,23:26.4421,58:24.237,21:13.3379,11:22.1861,10:21.7208,15:40.2055,7:25.3117,28:36.8583,46:18.7224,33:21.4677,55:19.7863,54:27.5627,25:39.8148,3:46.4275,49:38.6006,41:39.8352,1:33.5861,26:42.8554,44:19.269,37:36.2559,56:13.4556,42:29.7303,27:48.3719,50:44.2021,16:42.1164,40:39.0828,48:29.9162,39:41.9473,9:11.4724,52:39.9989,13:34.3349,43:19.1593,19:19.7755,59:23.5146,2:42.7934,20:12.5162,18:24.3769,22:20.628,35:29.7273,57:20.3962,45:11.5792,38:43.951,47:29.8883,14:37.9275,53:30.0995}
{0:27.6615,31:47.1252,34:32.6974,4:46.4725,32:48.5237,5:40.1781,8:25.1548,6:38.7275,30:43.1521,24:21.2563,29:43.6426,17:47.5938,51:10.0061,36:14.3496,12:13.8752,23:16.3054,58:45.6228,21:32.4614,11:16.8667,10:13.1251,15:40.8696,7:24.4118,28:34.9954,46:46.4451,33:33.1311,55:25.4394,54:21.3477,25:20.6274,3:44.2635,49:22.4858,41:29.3133,1:37.1994,26:19.267,44:49.5431,37:18.3297,56:41.0241,42:30.4574,27:31.901,50:13.9671,16:44.2248,40:19.7005,48:28.8598,39:11.2614,9:15.9376,52:11.715,13:29.9686,43:39.9141,19:44.7513,59:43.5888,2:39.1576,20:39.8125,18:47.6068,22:16.6461,35:20.2997,57:37.1046,45:49.8514,38:12.1545,47:39.5613,14:34.3223,53:15.9452}
{0:26.2397,31:17.1164,34:21.1623,4:35.5473,32:13.9889,5:40.5235,8:19.7114,6:24.2953,30:22.9206,24:36.6328,29:32.2145,17:26.4065,51:40.8245,36:35.8308,12:37.4725,23:33.3568,58:31.6516,21:20.8685,11:31.6184,10:25.4068,15:45.5345,7:20.7257,28:34.15,46:32.4563,33:15.9621,55:17.7653,54:14.7021,25:37.6404,3:49.9508,49:47.7389,41:22.7822,1:35.0625,26:41.7254,44:16.9057,37:46.3728,56:17.2865,42:13.3693,27:42.3735,50:41.3981,16:37.1953,40:34.9289,48:42.6509,39:33.0552,9:21.3931,52:25.2424,13:35.7729,43:21.9965,19:24.1489,59:38.961,2:48.1225,20:11.399,18:18.7612,22:25.102,35:38.3149,57:28.6266,45:20.1066,38:47.7459,47:43.1964,14:38.988,53:17.258}
{0:26.8911,31:36.1049,34:43.5772,4:42.2098,32:44.4373,5:34.4329,8:14.9234,6:20.8029,30:22.7272,24:43.4375,29:17.3737,17:22.3659,51:22.5919,36:35.5608,12:39.0141,23:45.1564,58:23.8761,21:34.3958,11:38.131,10:30.7871,15:35.1921,7:13.0554,28:20.4831,46:35.2902,33:42.9198,55:40.6234,54:39.4429,25:38.2177,3:41.6352,49:19.2354,41:29.6449,1:43.6161,26:28.1738,44:38.6288,37:27.7454,56:36.0594,42:39.5166,27:24.7151,50:24.257,16:23.0421,40:18.4122,48:16.1952,39:21.8644,9:15.4818,52:34.7132,13:41.8578,43:44.5715,19:18.6745,59:16.2003,2:46.4914,20:24.8879,18:11.7988,22:38.6106,35:42.3916,57:24.6428,45:40.5667,38:15.8291,47:22.6827,14:40.0218,53:44.7643}
{0:25.7836,31:37.9467,34:36.6071,4:35.9612,32:39.7359,5:34.3068,8:25.0472,6:32.1078,30:31.8551,24:26.5453,29:36.6117,17:40.3858,51:30.1622,36:32.6121,12:22.9948,23:25.6679,58:32.155,21:34.0911,11:25.3114,10:24.6516,15:28.426,7:29.7494,28:27.5418,46:37.0671,33:33.5354,55:19.3567,54:14.8119,25:17.3382,3:37.1762,49:33.3714,41:27.6863,1:34.1285,26:24.9795,44:31.2589,37:22.2615,56:24.5075,42:21.7472,27:20.1339,50:23.0596,16:34.5555,40:24.5471,48:34.7299,39:16.1235,9:17.4549,52:22.0215,13:30.2558,43:27.1976,19:40.5662,59:34.8388,2:42.6593,20:32.6122,18:39.6422,22:26.0326,35:37.4791,57:34.4315,45:40.5694,38:20.662,47:34.4648,14:25.9548,53:22.2164}
{0:25.8699,31:37.0151,34:47.6813,4:47.3839,32:38.0939,5:40.7405,8:25.8342,6:42.4937,30:31.3605,24:17.8589,29:30.816,17:43.6215,51:40.1721,36:39.6516,12:13.3209,23:23.1904,58:27.3859,21:35.4217,11:17.895,10:16.0044,15:31.9108,7:30.2818,28:21.7455,46:36.2438,33:46.6881,55:13.0963,54:25.1925,25:14.6844,3:47.0517,49:42.3517,41:22.3271,1:39.1949,26:23.5036,44:29.6024,37:31.7013,56:18.1111,42:19.1945,27:23.1408,50:42.1601,16:39.2084,40:22.6536,48:44.2335,39:22.265,9:17.65,52:30.0935,13:19.0447,43:21.1628,19:44.8149,59:27.0259,2:36.9079,20:44.9214,18:41.5669,22:35.4772,35:43.777,57:14.7535,45:27.5627,38:23.7666,47:38.8592,14:27.4401,53:21.092}
{0:30.889,31:15.1853,34:35.0796,4:45.9137,32:26.3777,5:31.5081,8:16.3393,6:21.6369,30:18.1118,24:37.3172,29:14.6857,17:23.2974,51:21.8179,36:37.8553,12:42.8419,23:37.3818,58:46.9366,21:23.3942,11:26.4595,10:23.1959,15:45.2996,7:21.9437,28:28.4235,46:42.5988,33:27.795,55:31.8022,54:21.1824,25:45.0726,3:39.6446,49:39.0345,41:18.6636,1:32.4894,26:35.7872,44:23.5126,37:37.9298,56:31.9355,42:18.4888,27:39.5548,50:25.0577,16:37.1222,40:16.1311,48:36.1755,39:25.0217,9:11.6047,52:10.8131,13:40.7642,43:25.0112,19:12.3005,59:35.429,2:37.0183,20:12.0308,18:21.2917,22:28.8808,35:37.0053,57:37.5677,45:42.7319,38:36.4397,47:47.6508,14:45.4687,53:22.5345}
{0:28.0747,31:38.9346,34:36.1832,4:44.3196,32:42.954,5:34.3157,8:24.3011,6:32.2124,30:36.6163,24:15.3712,29:43.0044,17:48.3011,51:12.2511,36:16.3258,12:24.3573,23:12.1236,58:46.4582,21:31.4985,11:22.2789,10:17.1777,15:34.837,7:31.8679,28:32.5973,46:40.0776,33:34.9566,55:24.0444,54:28.9726,25:12.4359,3:38.7345,49:23.7495,41:24.0577,1:41.7835,26:15.7626,44:39.1977,37:14.9877,56:39.4043,42:36.6162,27:24.6788,50:18.3743,16:46.5501,40:24.0753,48:34.0178,39:22.7278,9:14.5474,52:15.5389,13:31.0105,43:43.9824,19:42.3626,59:44.4323,2:42.1198,20:35.6567,18:38.8587,22:19.7938,35:28.1765,57:38.0344,45:40.1177,38:10.6797,47:34.7518,14:31.4443,53:18.6989}
{0:33.6696,31:35.7116,34:32.1562,4:37.2908,32:40.8716,5:43.9746,8:31.0801,6:31.9092,30:41.995,24:15.0894,29:29.0099,17:38.8434,51:28.0785,36:24.9799,12:19.983,23:18.5227,58:36.9095,21:32.8967,11:23.0965,10:13.9495,15:38.5696,7:25.8783,28:23.6868,46:37.8505,33:41.6692,55:25.685,54:23.098,25:17.771,3:41.9887,49:34.9768,41:26.171,1:38.6754,26:22.6142,44:35.0828,37:23.7053,56:28.2153,42:30.1646,27:25.3127,50:26.5887,16:33.3758,40:14.9059,48:32.3375,39:20.9754,9:15.8582,52:19.597,13:21.6921,43:27.8182,19:33.5336,59:39.7494,2:39.7419,20:39.1946,18:41.936,22:25.3429,35:25.1622,57:34.9395,45:39.5136,38:18.4134,47:33.9673,14:31.5791,53:24.6693}
{0:30.5729,31:28.821,34:13.0171,4:43.2718,32:24.0146,5:39.713,8:26.0301,6:33.0965,30:31.4581,24:18.8727,29:35.2486,17:44.8676,51:31.4823,36:26.8407,12:29.1007,23:25.885,58:19.7201,21:20.6863,11:21.0894,10:16.8196,15:42.2451,7:31.0122,28:40.6931,46:14.1642,33:19.608,55:38.8168,54:46.544,25:26.3807,3:44.9217,49:24.7889,41:42.7303,1:41.0741,26:39.6961,44:24.1798,37:26.265,56:32.5324,42:39.0364,27:40.6656,50:29.0875,16:35.9468,40:38.723,48:14.1068,39:41.8942,9:22.1912,52:36.3266,13:27.7625,43:30.8168,19:24.7753,59:12.7513,2:44.9793,20:29.2435,18:35.8214,22:12.3807,35:13.5915,57:24.353,45:25.6181,38:26.931,47:16.6744,14:41.4299,53:46.8327}
{0:31.3987,31:37.887,34:38.285,4:29.2066,32:31.35,5:27.7721,8:30.3375,6:37.1089,30:30.748,24:32.1428,29:35.117,17:28.0999,51:38.2306,36:41.6004,12:36.0212,23:39.0665,58:46.5461,21:32.1641,11:26.5441,10:37.5035,15:29.9429,7:28.8364,28:33.0331,46:38.795,33:35.4752,55:47.8927,54:46.5,25:36.4759,3:28.0515,49:40.4335,41:41.8285,1:24.9653,26:31.9306,44:35.3026,37:32.7202,56:39.6977,42:38.7962,27:30.5072,50:35.7605,16:38.1711,40:44.5204,48:37.346,39:40.1186,9:32.244,52:42.7972,13:28.4489,43:40.0053,19:32.966,59:44.9522,2:28.7758,20:38.7074,18:30.2058,22:38.023,35:38.033,57:47.7654,45:38.6383,38:43.2126,47:46.2453,14:36.3764,53:45.1616}
{0:31.8423,31:33.0182,34:38.0194,4:31.1032,32:32.937,5:27.9209,8:30.8263,6:28.0685,30:36.3514,24:41.7028,29:33.7559,17:31.4493,51:40.7793,36:44.1277,12:28.4097,23:36.7237,58:41.1792,21:37.4857,11:28.9334,10:31.6596,15:31.1408,7:31.6294,28:41.126,46:38.4099,33:38.9925,55:42.7685,54:38.6905,25:38.9689,3:30.4253,49:46.217,41:38.6173,1:33.3021,26:34.8491,44:45.8156,37:37.2854,56:39.8767,42:42.2168,27:32.8099,50:45.3056,16:34.8166,40:39.1971,48:39.094,39:34.8823,9:31.6236,52:43.6028,13:30.999,43:38.776,19:36.0718,59:44.3473,2:32.3712,20:39.5278,18:38.534,22:38.5054,35:39.337,57:45.9186,45:35.7799,38:39.6778,47:44.949,14:32.7143,53:42.1233}
{0:33.786,31:47.6898,34:43.9907,4:26.0134,32:47.2499,5:36.2028,8:35.7543,6:31.0243,30:40.9674,24:39.4282,29:43.1008,17:40.0221,51:50.9293,36:49.9115,12:37.5364,23:43.0438,58:63.8281,21:37.4766,11:37.2576,10:32.4006,15:33.2537,7:37.7853,28:40.0135,46:58.6001,33:49.2136,55:62.1838,54:53.5783,25:43.5632,3:37.3424,49:50.0882,41:55.9336,1:29.4283,26:45.8074,44:48.7672,37:53.2786,56:62.8526,42:50.8227,27:49.2652,50:55.5525,16:43.2327,40:48.8848,48:57.2922,39:45.8125,9:36.953,52:56.8585,13:40.4136,43:53.7613,19:38.4532,59:56.1269,2:27.3768,20:42.5647,18:34.1173,22:37.2659,35:51.4391,57:57.1975,45:57.6819,38:45.1929,47:54.3536,14:33.8632,53:54.5623}
{0:24.9438,31:46.5685,34:45.1153,4:32.5623,32:40.8066,5:27.9714,8:34.9671,6:32.5903,30:39.4279,24:43.1482,29:42.1111,17:33.7404,51:50.875,36:41.4234,12:36.9154,23:39.3199,58:57.1934,21:39.438,11:37.3428,10:37.8224,15:36.7636,7:32.2162,28:47.8287,46:54.4026,33:44.658,55:51.2098,54:54.8577,25:36.0969,3:29.4919,49:55.3656,41:54.7247,1:31.2313,26:36.9049,44:55.8376,37:47.8347,56:53.1535,42:44.2337,27:44.5956,50:49.8034,16:38.6706,40:45.3238,48:56.9123,39:44.5647,9:40.1439,52:52.8169,13:32.3087,43:44.9766,19:34.9196,59:57.2379,2:27.1868,20:39.4181,18:42.3095,22:45.2791,35:44.5902,57:56.9139,45:52.9711,38:53.8572,47:54.4372,14:38.2306,53:60.4592}
{0:28.1121,31:34.2962,34:37.198,4:36.3084,32:33.8502,5:27.1836,8:27.2486,6:33.3193,30:44.2263,24:32.534,29:37.5158,17:35.5261,51:42.2603,36:42.4324,12:36.1121,23:36.2342,58:46.1068,21:40.1728,11:34.4149,10:28.3023,15:31.5615,7:30.7454,28:32.3973,46:38.3026,33:41.4931,55:46.8042,54:46.039,25:40.753,3:36.2299,49:49.8109,41:41.1374,1:36.3293,26:43.6766,44:41.1352,37:45.5173,56:52.0079,42:42.3521,27:40.6874,50:43.6625,16:30.0991,40:39.4513,48:46.9802,39:45.8344,9:35.6898,52:49.1265,13:32.1317,43:38.8468,19:33.9079,59:45.1586,2:29.4486,20:41.7105,18:34.4978,22:40.6953,35:38.8984,57:43.246,45:47.2166,38:45.8172,47:49.9033,14:38.5204,53:47.7338}
{0:33.8521,31:39.7685,34:36.4371,4:25.3776,32:39.1554,5:31.4809,8:37.5624,6:36.1373,30:40.8326,24:35.8212,29:42.8287,17:31.984,51:44.2995,36:39.3814,12:38.5599,23:34.9342,58:51.5067,21:35.6409,11:34.9452,10:35.3645,15:31.8456,7:32.8189,28:35.5282,46:39.2537,33:43.7347,55:42.4782,54:46.5499,25:35.5492,3:31.1028,49:46.995,41:38.638,1:29.3957,26:36.5261,44:42.6664,37:41.5543,56:46.4594,42:39.1037,27:35.8597,50:42.2052,16:32.358,40:40.5088,48:43.7083,39:36.2012,9:31.6066,52:42.6413,13:36.8803,43:41.9803,19:35.851,59:41.9907,2:31.5708,20:30.4303,18:35.6291,22:33.5137,35:43.822,57:43.2089,45:43.1847,38:39.4323,47:42.7773,14:38.5829,53:46.78}
{0:24.3085,31:40.2924,34:46.8247,4:35.288,32:47.7524,5:31.4105,8:28.0319,6:36.0205,30:48.1591,24:35.3263,29:47.0212,17:31.9399,51:52.4166,36:46.9777,12:40.8476,23:38.8465,58:53.5134,21:43.0109,11:30.9085,10:40.0655,15:38.2533,7:31.5055,28:43.5947,46:49.7506,33:41.6874,55:52.0021,54:61.1162,25:46.8235,3:36.8007,49:58.2838,41:53.3457,1:25.0208,26:40.3321,44:54.7846,37:49.7472,56:50.0944,42:48.4711,27:39.5425,50:55.884,16:37.2412,40:50.3566,48:53.6246,39:50.599,9:32.3991,52:58.4628,13:39.5119,43:54.0131,19:41.9704,59:59.4715,2:28.8281,20:38.0374,18:32.4066,22:38.4823,35:46.8959,57:58.2543,45:53.6267,38:44.4974,47:46.6692,14:42.1863,53:53.9063}
{0:24.3698,31:44.0432,34:43.4581,4:30.1614,32:41.0983,5:34.2076,8:33.6575,6:30.7986,30:41.2693,24:42.1618,29:40.8846,17:38.0191,51:49.7913,36:42.1843,12:33.0737,23:35.9258,58:51.1619,21:38.8591,11:31.489,10:34.2014,15:40.3215,7:37.802,28:39.7122,46:45.8121,33:46.3791,55:51.8167,54:48.1314,25:33.023,3:36.7516,49:51.6751,41:42.871,1:27.8755,26:34.1796,44:40.43,37:42.5297,56:49.2607,42:42.4655,27:33.8405,50:47.5062,16:34.6842,40:44.5637,48:44.6657,39:45.1653,9:37.9637,52:52.6863,13:29.0628,43:39.7585,19:41.7387,59:53.7576,2:30.794,20:31.535,18:41.299,22:35.8947,35:46.6678,57:44.194,45:50.1219,38:41.6119,47:49.3347,14:39.3386,53:45.2849}
{0:32.1313,31:45.9606,34:50.9592,4:27.6166,32:40.3611,5:33.0543,8:29.0582,6:36.0639,30:38.1951,24:40.8648,29:43.6746,17:40.359,51:55.6982,36:44.3501,12:32.5084,23:42.0012,58:53.3589,21:39.7779,11:32.3132,10:38.7646,15:37.7119,7:36.9642,28:43.2638,46:57.0172,33:40.7058,55:59.4544,54:50.9336,25:38.8355,3:27.4192,49:49.841,41:46.1389,1:31.7108,26:43.6566,44:54.8486,37:47.2705,56:57.0699,42:48.4207,27:37.2466,50:52.5337,16:35.5316,40:44.7594,48:49.071,39:45.0867,9:30.3856,52:53.699,13:38.5142,43:47.2484,19:44.0302,59:52.7609,2:35.7934,20:44.16,18:39.9454,22:37.2605,35:52.071,57:51.8196,45:52.3914,38:42.643,47:56.6627,14:32.6819,53:57.5873}
{0:35.3004,31:40.7139,34:44.2929,4:29.2162,32:41.3721,5:33.5323,8:27.9764,6:38.1741,30:41.2418,24:40.1352,29:40.8414,17:43.2849,51:54.6418,36:40.8134,12:39.475,23:37.4503,58:50.3453,21:42.7111,11:37.3244,10:31.1204,15:37.9257,7:34.5968,28:38.0268,46:54.1002,33:49.4019,55:59.4725,54:56.6337,25:36.1661,3:36.7859,49:56.3847,41:49.4089,1:32.6963,26:44.3839,44:55.0994,37:44.6404,56:50.0009,42:50.8622,27:39.6744,50:52.0572,16:35.1615,40:53.529,48:49.7717,39:44.3513,9:33.2321,52:52.3832,13:40.4809,43:44.1022,19:41.9863,59:59.1334,2:26.872,20:41.577,18:41.7152,22:34.7162,35:46.7141,57:60.1209,45:49.7588,38:42.4611,47:53.3115,14:32.9652,53:58.0834}
{0:30.2515,31:33.3523,34:34.6876,4:35.7298,32:44.1691,5:35.9366,8:28.5137,6:36.1815,30:36.7905,24:37.6541,29:43.6869,17:36.7392,51:47.9713,36:34.8033,12:32.9692,23:36.2792,58:46.9561,21:37.4741,11:32.0442,10:29.3176,15:32.7244,7:27.9742,28:38.3093,46:37.2036,33:44.3983,55:49.043,54:49.0176,25:32.5134,3:26.3907,49:44.4959,41:39.1979,1:28.6556,26:41.6646,44:37.8962,37:40.2907,56:45.3036,42:41.2338,27:35.9484,50:42.7153,16:28.3996,40:45.3628,48:36.9451,39:36.0383,9:33.1142,52:48.4778,13:28.5075,43:44.9372,19:35.1907,59:44.7084,2:36.289,20:35.4984,18:32.2871,22:40.326,35:39.4783,57:39.4619,45:41.6066,38:34.9513,47:45.4698,14:29.2677,53:45.3876}
{0:28.4257,31:37.0262,34:43.3845,4:35.515,32:38.7755,5:34.0646,8:37.2714,6:33.1163,30:37.9621,24:32.2649,29:37.201,17:35.5054,51:46.9664,36:44.3841,12:35.1412,23:32.1267,58:51.2098,21:31.4759,11:36.6051,10:29.6748,15:39.4162,7:27.1808,28:43.5012,46:39.4836,33:39.9923,55:46.5232,54:50.551,25:37.7158,3:30.847,49:45.1023,41:37.5313,1:26.9938,26:33.4,44:43.5715,37:42.2948,56:46.3846,42:42.5587,27:41.8694,50:43.0655,16:32.78,40:36.4419,48:47.4946,39:42.4979,9:36.2559,52:47.4131,13:39.0806,43:47.3838,19:37.0514,59:45.7781,2:26.9668,20:34.0591,18:33.4954,22:39.7085,35:41.2662,57:41.8187,45:40.6887,38:46.3428,47:38.767,14:36.7262,53:41.3982}
{0:29.7404,31:45.5389,34:44.165,4:26.792,32:47.9692,5:37.2971,8:35.9409,6:31.5954,30:44.7001,24:38.4571,29:38.6533,17:35.8735,51:49.1116,36:38.5372,12:35.631,23:38.9976,58:46.9879,21:41.5999,11:36.0939,10:34.2783,15:34.3746,7:35.2787,28:38.5681,46:45.8359,33:39.8013,55:52.4052,54:53.7837,25:36.4361,3:26.8033,49:54.633,41:49.4614,1:25.5891,26:42.1236,44:52.6234,37:43.6417,56:51.8714,42:51.1301,27:43.1119,50:45.5936,16:33.8735,40:48.2249,48:48.3497,39:43.0117,9:31.3922,52:50.8138,13:40.2588,43:49.5438,19:37.0087,59:47.5532,2:27.592,20:39.5055,18:34.5659,22:40.8516,35:46.5594,57:56.8128,45:41.7961,38:48.4366,47:45.2485,14:41.3602,53:47.2456}
{0:28.1599,31:32.4061,34:36.9628,4:25.1347,32:42.6208,5:26.7568,8:36.1388,6:27.3727,30:36.2941,24:31.6366,29:35.9753,17:38.9289,51:38.0402,36:43.0449,12:35.0191,23:35.8679,58:39.5707,21:36.0958,11:29.0913,10:32.488,15:33.9834,7:36.4123,28:35.0377,46:41.7388,33:32.1441,55:40.6647,54:42.6318,25:36.8904,3:34.9801,49:40.6304,41:40.5853,1:24.2887,26:39.9256,44:42.3284,37:43.1852,56:48.4025,42:36.5493,27:42.284,50:38.4283,16:30.377,40:40.6858,48:44.2607,39:40.9377,9:27.7068,52:39.6954,13:37.6617,43:43.4101,19:31.8917,59:42.8827,2:25.8051,20:35.2023,18:33.2863,22:33.6072,35:33.879,57:46.2154,45:45.0991,38:43.2838,47:35.5322,14:38.9191,53:43.7154}
{0:33.7317,31:38.1798,34:40.4969,4:28.9012,32:38.2165,5:31.4115,8:37.216,6:33.6236,30:36.1627,24:36.4863,29:40.5205,17:32.9285,51:47.0216,36:47.7718,12:38.7843,23:38.4143,58:53.873,21:42.6065,11:37.7723,10:35.1056,15:36.7014,7:32.7951,28:36.6834,46:49.0697,33:45.0537,55:54.3964,54:44.9842,25:38.8038,3:31.9649,49:44.1984,41:43.1051,1:28.6552,26:43.8872,44:45.2055,37:38.4642,56:45.5357,42:46.3689,27:39.8808,50:47.5691,16:33.8543,40:42.5451,48:40.852,39:49.3243,9:36.4011,52:43.1834,13:32.8908,43:44.6547,19:37.3403,59:54.6019,2:25.6557,20:32.8377,18:36.6025,22:36.4027,35:44.4415,57:52.1732,45:50.6693,38:38.2428,47:49.6051,14:38.8768,53:53.764}
{0:35.4319,31:39.9949,34:46.4773,4:29.1478,32:43.9638,5:35.0537,8:30.9723,6:31.8181,30:43.5016,24:42.6915,29:48.5968,17:41.663,51:51.5953,36:50.8937,12:39.1151,23:45.1501,58:53.511,21:44.8035,11:39.2753,10:34.8603,15:36.9924,7:36.4696,28:47.3762,46:54.3016,33:48.1265,55:58.5608,54:53.6074,25:43.5896,3:25.674,49:48.6374,41:48.744,1:30.6099,26:41.3492,44:50.3512,37:43.6249,56:54.6142,42:51.9964,27:43.6428,50:57.3912,16:42.1518,40:51.9837,48:49.9712,39:44.9824,9:30.3527,52:60.0089,13:40.4708,43:53.6838,19:41.0283,59:53.9953,2:26.0883,20:38.2065,18:39.5367,22:45.5761,35:46.4871,57:60.3993,45:55.4301,38:50.1272,47:53.5631,14:33.8821,53:61.0191}
{0:29.6489,31:42.4142,34:34.6427,4:35.4777,32:35.2894,5:31.3674,8:29.4857,6:28.5086,30:41.8373,24:36.7882,29:40.3655,17:29.7436,51:45.8035,36:45.9559,12:31.8387,23:39.7763,58:41.707,21:35.8005,11:33.4674,10:31.5858,15:34.5039,7:26.3133,28:38.2074,46:38.9576,33:43.908,55:42.3952,54:40.7608,25:40.3763,3:36.134,49:43.1027,41:41.103,1:33.096,26:38.5427,44:40.2554,37:36.3065,56:46.3509,42:36.7349,27:38.6562,50:43.5932,16:35.65,40:46.2074,48:43.5323,39:34.9716,9:28.9099,52:48.1441,13:31.5545,43:42.6702,19:31.2191,59:50.3943,2:35.7914,20:39.18,18:32.0648,22:30.3469,35:41.4042,57:41.5778,45:43.5537,38:46.134,47:44.2462,14:39.1221,53:50.2292}
{0:32.709,31:37.4662,34:42.4114,4:36.0992,32:41.1937,5:37.8613,8:39.3149,6:33.6601,30:43.0206,24:43.343,29:42.2801,17:37.5745,51:50.229,36:43.7782,12:38.2144,23:33.6838,58:51.7051,21:44.3288,11:33.9001,10:32.8904,15:37.4166,7:27.1943,28:36.5395,46:46.9359,33:37.7288,55:49.4964,54:56.4414,25:35.6312,3:27.4425,49:46.967,41:52.754,1:28.745,26:38.1692,44:44.0272,37:46.7966,56:57.6536,42:45.7759,27:43.3472,50:55.1426,16:40.8161,40:49.4091,48:53.6182,39:49.7821,9:34.1156,52:49.6607,13:37.6729,43:48.7781,19:36.4806,59:58.0728,2:35.3284,20:40.2425,18:41.2362,22:42.7833,35:49.7104,57:53.8531,45:46.1036,38:51.2915,47:47.8623,14:39.5599,53:47.3067}
{0:32.4244,31:34.188,34:39.9811,4:36.8598,32:33.546,5:33.8218,8:34.3915,6:29.6387,30:33.7691,24:40.4465,29:33.8859,17:29.456,51:46.9445,36:40.8359,12:32.4836,23:39.9387,58:40.7561,21:40.266,11:31.2711,10:26.9604,15:32.7952,7:25.8155,28:31.8126,46:41.6678,33:38.9841,55:42.4874,54:46.2889,25:40.4979,3:34.6701,49:38.9392,41:40.2708,1:27.8671,26:31.3181,44:38.2539,37:43.3476,56:37.351,42:38.6587,27:34.464,50:43.0888,16:34.9383,40:40.0943,48:35.2142,39:32.6978,9:36.803,52:36.074,13:34.3538,43:37.0113,19:33.4479,59:45.9159,2:26.9347,20:35.1411,18:36.6924,22:31.8118,35:41.696,57:39.49,45:38.667,38:41.5864,47:37.9471,14:32.6433,53:45.9129}
{0:33.0997,31:48.5984,34:44.4088,4:28.2286,32:47.5435,5:26.7665,8:34.019,6:29.7734,30:46.8334,24:45.2126,29:41.9919,17:32.6466,51:49.7673,36:47.6556,12:33.6427,23:39.4905,58:59.6823,21:35.5845,11:33.0815,10:34.4515,15:33.3063,7:37.5556,28:38.4727,46:50.7807,33:47.0321,55:53.9743,54:52.1168,25:44.5994,3:28.9516,49:47.7694,41:53.886,1:34.4534,26:38.937,44:48.4831,37:47.6186,56:58.1713,42:46.801,27:48.1308,50:47.9476,16:37.3242,40:48.7739,48:48.2603,39:42.7411,9:39.1789,52:53.7859,13:36.704,43:50.2295,19:41.0878,59:57.4005,2:34.5409,20:34.3329,18:33.8072,22:46.1385,35:50.0604,57:58.5956,45:54.5412,38:44.425,47:52.3561,14:30.9086,53:59.8488}
{0:31.2383,31:42.9496,34:43.0839,4:28.4496,32:42.1524,5:33.1527,8:32.7252,6:29.8152,30:40.6205,24:42.8284,29:42.5259,17:39.3034,51:46.7068,36:46.4486,12:32.0059,23:41.5801,58:51.1472,21:33.7034,11:34.1364,10:30.6407,15:40.8474,7:32.0028,28:46.3765,46:46.031,33:47.0347,55:58.0125,54:56.3863,25:44.6675,3:34.0107,49:46.873,41:52.8663,1:27.9815,26:46.0205,44:53.7328,37:49.2271,56:49.9253,42:46.4665,27:43.8664,50:47.7445,16:37.2825,40:52.6704,48:45.401,39:45.9976,9:30.3241,52:50.0508,13:29.5904,43:48.0867,19:34.8056,59:58.8556,2:27.3265,20:37.7306,18:34.1874,22:43.5982,35:49.6873,57:50.1608,45:44.8517,38:50.8227,47:47.6777,14:35.6453,53:57.6604}
{0:35.6912,31:32.7044,34:38.6747,4:32.7592,32:32.7596,5:36.0698,8:27.1744,6:35.5339,30:35.1436,24:30.8433,29:36.3201,17:31.584,51:36.7297,36:42.0597,12:32.0661,23:32.6884,58:41.5968,21:36.029,11:28.4921,10:30.7375,15:30.2763,7:26.6311,28:40.2991,46:43.6899,33:40.9869,55:40.2806,54:38.1539,25:36.7226,3:35.7342,49:36.0082,41:39.5917,1:33.701,26:34.1996,44:33.6406,37:37.7087,56:36.3232,42:44.5658,27:39.5759,50:38.1217,16:37.9305,40:38.4583,48:36.4578,39:38.3483,9:31.7971,52:35.7692,13:36.3311,43:33.7602,19:35.179,59:37.5447,2:32.233,20:35.8934,18:39.6758,22:36.002,35:35.7537,57:44.2678,45:43.104,38:40.976,47:34.16,14:29.6023,53:44.3307}
{0:27.468,31:43.9613,34:48.5096,4:26.9016,32:40.2952,5:36.2244,8:39.5308,6:35.8864,30:42.2175,24:35.7325,29:41.9418,17:32.246,51:53.3908,36:50.515,12:33.431,23:43.7245,58:60.1198,21:41.914,11:36.7721,10:29.0574,15:34.0652,7:33.6723,28:48.9059,46:49.2232,33:42.7345,55:52.2059,54:53.686,25:46.6414,3:37.3704,49:47.0701,41:51.0317,1:29.3275,26:47.4899,44:50.6571,37:49.2968,56:50.7064,42:46.5141,27:45.2218,50:57.9716,16:42.5886,40:47.2514,48:56.373,39:42.7501,9:31.5348,52:51.3581,13:30.2875,43:55.9922,19:43.4529,59:51.7195,2:34.457,20:40.4034,18:36.972,22:43.8608,35:41.5804,57:52.0522,45:48.8741,38:42.1087,47:57.6687,14:36.6458,53:55.325}
{0:29.4393,31:36.237,34:37.5136,4:24.9871,32:32.6198,5:27.837,8:33.3098,6:36.5466,30:38.125,24:34.3909,29:30.9456,17:30.0073,51:41.4491,36:33.969,12:34.3582,23:34.2004,58:39.0435,21:34.9593,11:36.8271,10:27.5141,15:34.8548,7:36.6776,28:41.0361,46:37.1145,33:39.6909,55:48.2771,54:42.0026,25:38.1912,3:33.528,49:43.9474,41:40.1639,1:34.0155,26:33.5906,44:40.2011,37:44.6429,56:46.1509,42:42.033,27:36.4974,50:44.713,16:36.4987,40:35.645,48:36.8345,39:33.3518,9:26.5404,52:47.6899,13:28.5865,43:42.8966,19:32.5218,59:42.138,2:25.0317,20:35.3956,18:32.1477,22:32.4768,35:33.1047,57:43.1998,45:35.8719,38:41.3404,47:44.1907,14:37.1974,53:44.0029}
{0:28.0805,31:45.9223,34:48.9408,4:36.9856,32:46.3246,5:35.0186,8:28.5626,6:28.7189,30:43.9442,24:34.3978,29:37.0005,17:41.9618,51:52.1437,36:46.6158,12:31.4445,23:33.7351,58:49.8126,21:43.8184,11:39.2832,10:32.1369,15:30.7001,7:35.1502,28:39.8436,46:52.2556,33:39.0381,55:48.1149,54:48.9725,25:44.5495,3:33.2845,49:51.3519,41:51.4633,1:35.0183,26:40.1718,44:49.5178,37:42.4033,56:58.4278,42:50.7177,27:36.8417,50:56.3103,16:42.4316,40:41.2212,48:55.5835,39:43.5712,9:32.7264,52:54.5438,13:29.8179,43:45.4616,19:37.0526,59:50.2502,2:34.4413,20:37.3044,18:40.2365,22:36.8555,35:45.9883,57:49.7246,45:51.2913,38:43.398,47:51.1949,14:35.6533,53:56.2597}
{0:34.3446,31:41.9192,34:43.0351,4:28.9381,32:43.392,5:37.8676,8:34.8031,6:31.4129,30:41.8952,24:44.2052,29:47.8417,17:35.6559,51:48.7905,36:41.5461,12:36.73,23:34.3198,58:54.961,21:39.8317,11:37.5792,10:28.704,15:33.1297,7:34.4926,28:46.9128,46:51.8638,33:44.2236,55:53.8708,54:52.1461,25:42.4706,3:33.2087,49:47.9833,41:44.561,1:30.8316,26:36.8043,44:43.7445,37:51.7451,56:52.4796,42:49.5355,27:46.8042,50:58.2694,16:37.5013,40:50.3445,48:52.4852,39:49.3458,9:37.4833,52:48.7111,13:40.365,43:48.2993,19:40.725,59:61.707,2:31.7282,20:40.0958,18:33.8402,22:40.35,35:50.2648,57:50.8666,45:54.5763,38:46.8709,47:49.7764,14:42.2197,53:50.2804}
{0:27.2778,31:33.0529,34:41.144,4:35.9647,32:37.3615,5:33.2965,8:30.3351,6:33.4248,30:37.26,24:34.7353,29:31.2923,17:37.6611,51:39.3856,36:40.1053,12:29.1589,23:30.9881,58:42.0044,21:30.3534,11:35.6362,10:31.9445,15:29.7823,7:28.5974,28:36.9823,46:37.2036,33:33.2891,55:41.0704,54:44.0903,25:42.0485,3:24.7666,49:38.8181,41:43.1856,1:29.8113,26:32.7066,44:42.4863,37:43.2437,56:39.6853,42:41.712,27:32.754,50:43.9101,16:35.2679,40:39.9565,48:43.3561,39:45.2657,9:31.2874,52:39.0952,13:28.2079,43:36.9456,19:31.846,59:45.3073,2:27.1318,20:33.3598,18:34.1102,22:39.5751,35:34.2753,57:44.9884,45:38.78,38:41.0522,47:35.9647,14:37.7905,53:48.455}
{0:28.0361,31:45.5245,34:47.9846,4:36.8872,32:42.0663,5:37.7666,8:33.6189,6:33.5699,30:45.7702,24:39.7216,29:44.2188,17:40.3936,51:54.1507,36:47.608,12:29.2692,23:33.4727,58:47.4843,21:43.7628,11:31.0345,10:32.7712,15:36.1579,7:30.6985,28:37.2476,46:49.2826,33:45.7828,55:51.839,54:46.405,25:40.5221,3:28.3946,49:52.7052,41:49.0481,1:28.2934,26:36.2185,44:52.8364,37:39.6161,56:50.7424,42:46.4484,27:36.86,50:47.8104,16:35.7256,40:40.7009,48:46.9417,39:41.0513,9:37.548,52:53.6787,13:36.3417,43:42.2738,19:32.3979,59:57.9786,2:30.4948,20:39.3889,18:34.0946,22:37.7561,35:41.0704,57:52.5322,45:52.2561,38:45.3248,47:55.0288,14:38.9863,53:50.8037}
{0:27.5606,31:50.7942,34:47.7454,4:28.7735,32:49.1814,5:33.618,8:38.77,6:33.3357,30:40.7436,24:36.093,29:48.9718,17:42.096,51:59.0133,36:52.8485,12:31.1634,23:38.8558,58:54.7396,21:39.5394,11:31.2151,10:29.8724,15:31.5504,7:30.85,28:41.79,46:53.8417,33:51.0195,55:53.0123,54:58.3401,25:43.7514,3:35.1986,49:49.7104,41:47.6176,1:31.8836,26:39.4066,44:49.0151,37:52.1046,56:57.708,42:51.0787,27:43.0201,50:50.41,16:39.4361,40:48.046,48:49.8759,39:46.8279,9:30.62,52:51.82,13:40.0553,43:47.1712,19:35.0382,59:59.4515,2:36.1555,20:37.2912,18:37.5231,22:38.0233,35:47.4958,57:51.2417,45:56.9343,38:53.8093,47:47.1264,14:33.8983,53:58.3331}
{0:33.2679,31:42.4144,34:49.3465,4:25.7097,32:39.5671,5:30.7051,8:34.369,6:30.0347,30:45.8165,24:46.124,29:42.5775,17:40.279,51:48.1337,36:43.085,12:39.3954,23:42.1663,58:52.7945,21:33.3006,11:32.7019,10:37.3368,15:30.5653,7:31.0635,28:38.004,46:44.9469,33:42.5135,55:49.8125,54:57.6834,25:44.8672,3:36.8708,49:53.5286,41:51.0431,1:35.6759,26:38.4234,44:54.1818,37:50.4989,56:57.0884,42:46.135,27:44.5344,50:53.6708,16:32.0109,40:46.2103,48:47.8336,39:42.8479,9:28.0166,52:57.6695,13:30.1284,43:46.5097,19:41.1749,59:51.5064,2:31.9187,20:38.7573,18:40.0966,22:43.3501,35:42.3166,57:50.2307,45:44.3463,38:41.5118,47:46.7979,14:30.8608,53:54.3242}
{0:27.0362,31:43.1789,34:40.3059,4:31.8397,32:44.991,5:28.5,8:27.4564,6:29.6826,30:40.5917,24:32.8479,29:38.5293,17:33.4946,51:52.0086,36:37.49,12:29.8161,23:43.9474,58:52.6182,21:41.6405,11:39.2002,10:37.0827,15:31.0861,7:34.84,28:43.5699,46:51.9711,33:40.3601,55:46.6934,54:50.6243,25:39.2058,3:31.5795,49:41.6542,41:42.1013,1:31.8087,26:42.2322,44:44.8052,37:47.0467,56:46.7181,42:48.4543,27:39.5784,50:49.6671,16:36.1436,40:48.4371,48:44.2521,39:40.2884,9:35.8762,52:46.0154,13:29.3745,43:43.4423,19:34.8118,59:48.5283,2:33.7103,20:36.1365,18:36.3367,22:38.465,35:37.5226,57:52.2497,45:49.3108,38:41.9242,47:42.8951,14:29.8381,53:53.8575}
{0:26.2911,31:42.5547,34:39.4013,4:34.4722,32:45.3092,5:29.5774,8:38.764,6:35.3982,30:35.5034,24:41.0701,29:42.5923,17:34.9155,51:42.785,36:36.4175,12:34.6822,23:37.6711,58:54.7975,21:31.2761,11:33.2196,10:29.6411,15:38.6461,7:29.3368,28:43.1579,46:49.8631,33:37.5123,55:52.493,54:46.6866,25:34.2816,3:32.9299,49:50.0902,41:47.4581,1:24.6488,26:42.5605,44:48.2452,37:38.8077,56:45.5301,42:42.0507,27:39.453,50:44.5092,16:34.6698,40:39.2452,48:40.9193,39:38.3518,9:36.5588,52:49.555,13:31.39,43:41.3258,19:34.9168,59:47.9018,2:31.1276,20:34.3557,18:31.4544,22:32.7284,35:42.1568,57:53.2799,45:47.1835,38:41.6367,47:52.0311,14:37.1512,53:45.4105}
{0:25.2996,31:47.9016,34:46.597,4:28.4874,32:44.6063,5:32.0918,8:37.6201,6:29.0345,30:40.5306,24:42.1875,29:39.6693,17:36.8671,51:50.8216,36:44.9915,12:35.2317,23:36.5428,58:55.5511,21:37.9261,11:36.2899,10:31.0616,15:39.9547,7:38.3077,28:39.6985,46:49.9225,33:45.8029,55:54.2011,54:53.3071,25:42.0522,3:29.5859,49:56.5697,41:47.3933,1:32.4257,26:45.0213,44:55.202,37:51.4235,56:55.3187,42:54.5131,27:39.2907,50:50.6723,16:42.1681,40:49.9335,48:49.6717,39:52.3805,9:33.6896,52:59.8385,13:35.992,43:54.1729,19:40.4651,59:60.1798,2:29.9739,20:36.3194,18:37.973,22:45.3243,35:49.2647,57:54.6774,45:56.7052,38:50.1946,47:55.8992,14:38.1661,53:50.9372}
{0:27.5819,31:45.5815,34:48.4897,4:35.3615,32:43.7046,5:29.4984,8:30.3468,6:37.4284,30:41.5657,24:43.2557,29:39.116,17:31.2973,51:48.3743,36:47.6387,12:40.8149,23:42.33,58:55.5617,21:44.1897,11:29.0639,10:33.4515,15:39.3608,7:32.3332,28:36.3006,46:44.2159,33:38.3864,55:55.9406,54:53.098,25:44.9701,3:32.5494,49:53.7388,41:47.9795,1:33.866,26:37.4803,44:47.6326,37:49.2959,56:57.4766,42:44.8301,27:41.5692,50:55.371,16:30.9691,40:43.1884,48:51.8392,39:48.5147,9:27.781,52:48.0136,13:40.7373,43:47.4542,19:35.2628,59:54.4343,2:26.721,20:32.2871,18:39.4576,22:42.3635,35:39.4586,57:55.9665,45:44.1094,38:41.2541,47:45.2613,14:31.0856,53:47.6338}
{0:25.9048,31:44.683,34:40.0901,4:26.0055,32:45.1334,5:26.1566,8:37.1081,6:34.0539,30:32.9557,24:41.0263,29:40.9748,17:32.4716,51:50.4796,36:45.8312,12:37.9664,23:32.2304,58:48.6185,21:34.6562,11:31.2005,10:38.3824,15:33.17,7:27.642,28:41.3157,46:45.6012,33:37.83,55:42.3763,54:44.8229,25:39.992,3:28.5292,49:40.0902,41:37.6194,1:32.5737,26:41.7743,44:41.6385,37:39.036,56:48.0405,42:47.6069,27:33.366,50:40.5583,16:36.7454,40:45.0785,48:43.0164,39:42.4791,9:32.7321,52:40.1837,13:31.0614,43:41.3996,19:40.271,59:47.3797,2:32.12,20:38.7913,18:38.4409,22:38.9426,35:36.9142,57:44.7052,45:46.32,38:42.0486,47:40.1456,14:32.8455,53:45.4554}
{0:24.9629,31:35.3182,34:41.4936,4:30.8281,32:32.2017,5:31.3033,8:37.861,6:28.9987,30:35.9001,24:33.1925,29:41.2251,17:36.5934,51:42.6518,36:35.1166,12:29.7634,23:32.9316,58:48.8327,21:40.454,11:33.2148,10:32.9114,15:39.2985,7:26.2957,28:38.7841,46:40.8002,33:37.2572,55:48.1042,54:42.9535,25:39.4272,3:30.5089,49:38.4021,41:35.7788,1:25.8042,26:39.4743,44:46.9924,37:40.4223,56:40.1929,42:36.2996,27:42.1764,50:38.5252,16:37.1798,40:42.4143,48:45.2243,39:44.3638,9:30.8825,52:39.9947,13:31.9595,43:44.8221,19:40.2048,59:47.918,2:35.4317,20:32.248,18:29.9821,22:35.7918,35:33.2426,57:43.6691,45:46.0238,38:42.524,47:41.3438,14:35.0306,53:43.4411}
{0:35.5395,31:41.6137,34:49.6518,4:35.724,32:44.7675,5:36.8882,8:36.0194,6:35.2689,30:46.6713,24:38.2964,29:42.0629,17:38.6686,51:52.8345,36:49.1119,12:32.2402,23:43.1583,58:55.5257,21:35.1813,11:38.2411,10:29.8632,15:39.1028,7:33.6335,28:44.2316,46:45.8685,33:39.9843,55:53.2945,54:57.5636,25:46.6101,3:28.732,49:46.8765,41:45.8069,1:27.5611,26:43.2542,44:50.5418,37:47.0229,56:55.4608,42:49.7979,27:39.8671,50:56.0487,16:42.9036,40:49.8179,48:46.161,39:50.4967,9:29.6744,52:54.9043,13:34.8854,43:55.7195,19:42.4101,59:53.0383,2:32.5073,20:36.6335,18:44.1091,22:44.9748,35:42.1904,57:54.9601,45:45.5382,38:43.7471,47:52.5094,14:30.5725,53:55.3554}
{0:35.9394,31:48.414,34:48.9388,4:36.9021,32:38.9848,5:34.5345,8:34.1574,6:32.8467,30:47.6874,24:44.8892,29:40.0347,17:38.7759,51:48.7387,36:43.0314,12:31.4035,23:34.183,58:58.9638,21:34.848,11:29.6483,10:38.8642,15:33.4683,7:37.0652,28:43.2065,46:53.6259,33:39.7573,55:59.6582,54:52.7083,25:36.4434,3:35.1025,49:57.2459,41:49.7167,1:26.7841,26:44.7439,44:47.043,37:42.418,56:50.0927,42:45.1782,27:39.1301,50:48.3275,16:38.8535,40:51.0928,48:50.8502,39:45.386,9:37.8901,52:50.7425,13:31.3325,43:51.0892,19:36.4038,59:59.1454,2:26.7745,20:33.7956,18:43.4413,22:42.9101,35:41.3721,57:60.5389,45:44.1584,38:48.7664,47:45.0123,14:38.6378,53:55.6025}
{0:29.6857,31:41.1753,34:46.0344,4:26.979,32:39.3342,5:34.0573,8:32.1856,6:35.4286,30:46.4239,24:34.3626,29:36.2459,17:37.9417,51:43.3448,36:43.1277,12:32.2903,23:39.7826,58:56.4484,21:39.7805,11:37.2348,10:38.2269,15:33.2686,7:36.5014,28:43.0897,46:46.1673,33:35.9559,55:44.6265,54:54.9188,25:39.8093,3:35.7117,49:43.9809,41:45.5035,1:25.7525,26:36.1034,44:41.9944,37:38.1726,56:47.7439,42:43.4366,27:37.4817,50:47.8115,16:36.2711,40:46.9587,48:41.9692,39:44.8258,9:33.9575,52:50.9783,13:29.2495,43:48.5899,19:39.001,59:46.1682,2:28.7642,20:32.9255,18:42.1983,22:40.7637,35:40.9368,57:54.9316,45:46.9461,38:45.772,47:42.2389,14:29.2298,53:52.4374}
{0:31.3418,31:40.5648,34:39.2931,4:28.7909,32:48.2785,5:32.1861,8:32.3117,6:29.9918,30:46.8326,24:44.698,29:44.6191,17:35.4862,51:52.4699,36:39.2976,12:36.6105,23:43.8249,58:51.368,21:37.5916,11:33.7049,10:37.1723,15:32.2281,7:29.4901,28:41.6624,46:53.3302,33:46.859,55:53.8531,54:44.8589,25:43.6686,3:29.4065,49:43.7913,41:43.6437,1:33.0911,26:35.3524,44:44.966,37:38.3129,56:53.3348,42:52.1649,27:36.856,50:46.2123,16:31.3955,40:41.934,48:54.3248,39:49.479,9:38.2447,52:53.3845,13:31.4095,43:43.4355,19:33.869,59:58.7586,2:26.029,20:42.7024,18:42.0714,22:37.1149,35:40.3689,57:48.3702,45:43.4793,38:41.6813,47:42.3546,14:39.8866,53:46.1186}
{0:31.9602,31:41.858,34:36.4193,4:25.6023,32:34.4006,5:36.0902,8:29.4513,6:35.6161,30:33.7534,24:34.268,29:44.9389,17:37.7266,51:43.5572,36:46.2718,12:36.8697,23:35.1178,58:43.8219,21:40.9712,11:38.0881,10:35.3669,15:35.8776,7:29.976,28:42.7715,46:39.6413,33:42.8055,55:48.6349,54:49.5213,25:33.9839,3:26.7175,49:45.5287,41:40.3242,1:25.7506,26:40.7591,44:49.0072,37:43.1024,56:51.1868,42:44.4635,27:36.9617,50:50.6493,16:35.0811,40:44.202,48:48.5847,39:38.2269,9:33.2844,52:42.0975,13:28.9326,43:49.3417,19:36.9452,59:50.4877,2:30.7712,20:37.8868,18:40.9207,22:37.4514,35:46.7352,57:52.8154,45:39.6666,38:36.7308,47:50.8915,14:38.2175,53:50.7904}
{0:24.3217,31:37.9087,34:36.9935,4:30.6259,32:35.3365,5:25.6265,8:27.2731,6:29.8207,30:33.2811,24:36.9861,29:42.6446,17:30.2166,51:46.7721,36:35.2567,12:31.721,23:37.3854,58:44.0376,21:36.2858,11:38.2297,10:32.2644,15:33.3738,7:37.5495,28:43.5881,46:44.7883,33:43.4145,55:49.6054,54:49.0613,25:36.4116,3:32.605,49:39.6678,41:39.6461,1:33.0434,26:33.9599,44:42.5956,37:42.4375,56:46.4916,42:43.2657,27:35.6302,50:39.5953,16:34.959,40:39.3385,48:50.1073,39:43.3817,9:27.9082,52:50.8566,13:29.6619,43:40.8055,19:41.729,59:49.9189,2:26.387,20:36.8269,18:36.6064,22:36.65,35:43.8325,57:42.1157,45:44.7639,38:38.1842,47:47.4322,14:40.2461,53:40.3297}
{0:28.7841,31:38.8795,34:47.9929,4:37.3494,32:39.3839,5:35.2877,8:39.4429,6:26.765,30:40.172,24:39.5857,29:41.0778,17:35.0314,51:48.7326,36:43.0692,12:41.4929,23:38.4908,58:57.33,21:38.915,11:34.3838,10:31.5123,15:42.9234,7:36.7532,28:39.3392,46:48.1281,33:45.3962,55:53.4752,54:56.7697,25:40.5193,3:26.6022,49:55.5097,41:48.1299,1:25.6765,26:42.1382,44:55.1494,37:42.6827,56:51.6139,42:43.7914,27:44.3181,50:55.2771,16:40.9299,40:53.2598,48:49.7611,39:53.0173,9:35.1656,52:54.2903,13:34.0433,43:45.6655,19:37.6394,59:54.4412,2:29.2405,20:37.6189,18:37.1912,22:39.0903,35:40.5275,57:51.6706,45:47.6925,38:46.066,47:48.9755,14:35.5032,53:54.2188}
{0:32.366,31:45.1852,34:41.6792,4:36.4377,32:36.0974,5:33.8299,8:30.8773,6:29.978,30:44.0172,24:37.1506,29:39.7364,17:32.4474,51:50.1816,36:48.5803,12:38.1222,23:34.9897,58:49.0919,21:41.6081,11:37.28,10:31.9019,15:38.5818,7:34.2071,28:38.5475,46:49.79,33:47.6768,55:47.3214,54:50.6438,25:44.6784,3:32.9739,49:42.528,41:47.2207,1:31.6288,26:37.1451,44:49.1569,37:42.8849,56:54.2903,42:49.039,27:40.5861,50:51.8427,16:32.3473,40:47.8962,48:49.8227,39:44.0211,9:31.3116,52:51.4025,13:30.5393,43:47.2607,19:34.5508,59:51.4834,2:32.1317,20:39.1919,18:33.9234,22:38.7608,35:45.129,57:49.239,45:47.7646,38:44.8898,47:46.7338,14:31.8152,53:43.0433}
{0:32.4475,31:48.5821,34:47.2683,4:36.3429,32:46.4939,5:29.6131,8:30.0858,6:31.7464,30:44.0038,24:37.6025,29:41.2954,17:33.6872,51:57.145,36:42.0039,12:38.3254,23:42.2308,58:58.0073,21:39.0309,11:35.3471,10:31.172,15:35.9474,7:32.1358,28:41.0815,46:55.7634,33:46.7284,55:51.1196,54:48.5379,25:38.6732,3:33.0984,49:46.8493,41:45.2987,1:35.3535,26:44.4589,44:44.4604,37:46.7228,56:54.9242,42:46.8771,27:37.9971,50:46.3585,16:36.3706,40:52.2037,48:50.0913,39:52.9277,9:38.2735,52:58.5384,13:40.0857,43:43.8099,19:41.6147,59:51.5771,2:27.1338,20:34.4467,18:34.0182,22:44.0532,35:42.0147,57:49.2409,45:52.4182,38:47.818,47:55.6387,14:33.3459,53:54.4914}
{0:24.8314,31:49.0556,34:40.349,4:31.3689,32:48.7964,5:34.8789,8:33.8693,6:28.222,30:38.8585,24:39.2605,29:43.4649,17:41.4894,51:57.9724,36:49.7004,12:34.3202,23:42.409,58:56.853,21:39.5416,11:34.2694,10:34.2594,15:40.9002,7:30.446,28:41.8527,46:49.4735,33:43.2169,55:56.1264,54:51.3991,25:36.9512,3:35.0209,49:51.6759,41:42.6267,1:35.3207,26:39.1502,44:43.8083,37:48.8911,56:57.1598,42:51.0188,27:45.0313,50:46.9124,16:37.5142,40:44.6368,48:46.5557,39:51.7229,9:37.1538,52:55.7373,13:38.1863,43:51.2693,19:36.9827,59:57.8019,2:30.5598,20:39.6697,18:36.8867,22:36.3939,35:41.9502,57:55.6344,45:44.7036,38:42.9907,47:50.1026,14:36.4906,53:48.8883}
{0:31.5669,31:37.2477,34:38.2581,4:31.1327,32:42.2271,5:31.5935,8:29.6342,6:37.8736,30:43.9814,24:38.097,29:45.1702,17:40.2038,51:50.9825,36:41.0243,12:30.3369,23:32.4948,58:44.6568,21:31.8949,11:33.3485,10:28.1204,15:30.7322,7:33.0938,28:36.9015,46:50.6511,33:46.0318,55:47.9534,54:43.0698,25:34.8148,3:25.3707,49:47.5171,41:45.5221,1:35.213,26:40.8335,44:47.5949,37:41.3018,56:50.1009,42:43.6837,27:35.494,50:52.2549,16:34.9871,40:39.4149,48:42.1036,39:48.0986,9:35.4663,52:44.2142,13:33.5632,43:48.7366,19:30.8851,59:49.4978,2:29.1733,20:34.0266,18:38.3768,22:39.3369,35:42.6797,57:51.5143,45:46.4417,38:39.4822,47:41.8011,14:32.0843,53:50.8325}
{0:28.3009,31:33.4382,34:40.703,4:26.2872,32:41.6744,5:25.8074,8:34.0405,6:29.941,30:42.338,24:35.9777,29:39.6928,17:31.2921,51:39.3147,36:45.1459,12:33.0309,23:31.106,58:52.7879,21:41.259,11:32.3459,10:30.8945,15:37.9917,7:26.2462,28:44.0964,46:42.4828,33:41.1512,55:51.399,54:45.6188,25:38.6302,3:28.7941,49:43.9513,41:45.2579,1:24.3384,26:43.5809,44:37.7141,37:42.1958,56:44.1778,42:42.195,27:37.534,50:48.0416,16:30.5435,40:47.3329,48:49.5987,39:44.4776,9:37.2671,52:40.5564,13:28.3692,43:37.6585,19:35.9718,59:43.6861,2:28.9174,20:39.1954,18:38.4016,22:38.3452,35:42.0472,57:46.5862,45:38.8288,38:46.0451,47:39.161,14:37.7044,53:47.2616}
{0:25.8559,31:39.4613,34:43.83,4:26.2724,32:40.8852,5:36.4934,8:30.3834,6:34.3395,30:37.9177,24:41.1055,29:36.5412,17:38.6604,51:48.0253,36:46.6172,12:36.3232,23:43.4735,58:55.3376,21:37.6762,11:30.8944,10:36.9926,15:41.6407,7:29.7476,28:46.6322,46:52.3344,33:42.1134,55:55.8923,54:49.3732,25:34.8839,3:35.7303,49:46.9251,41:48.5456,1:25.9505,26:45.6726,44:43.5935,37:47.2302,56:56.0081,42:51.1028,27:44.7585,50:55.2726,16:36.4763,40:49.0419,48:47.7031,39:48.8387,9:34.9669,52:49.8928,13:33.8854,43:44.6638,19:43.5741,59:51.8991,2:30.6158,20:33.3227,18:32.6411,22:36.8821,35:49.6678,57:58.8477,45:46.3658,38:47.3134,47:45.5532,14:34.4324,53:48.1392}
{0:25.691,31:40.8284,34:32.3955,4:25.9799,32:36.419,5:29.8029,8:31.83,6:35.3159,30:32.161,24:38.6424,29:33.4229,17:36.8399,51:35.5493,36:40.2681,12:37.1233,23:33.7949,58:47.602,21:30.2305,11:26.6136,10:30.2565,15:36.7616,7:32.2472,28:35.0568,46:37.1326,33:40.0272,55:39.6936,54:42.4691,25:38.5806,3:35.2622,49:35.9215,41:34.6545,1:33.3709,26:31.5159,44:34.4867,37:35.7221,56:39.8102,42:41.4373,27:33.4933,50:38.2407,16:37.1962,40:36.6652,48:43.3707,39:43.7978,9:37.2008,52:37.2615,13:31.2693,43:42.1716,19:30.0534,59:37.637,2:27.1828,20:35.8157,18:30.8332,22:37.6387,35:33.8878,57:36.7064,45:40.495,38:39.9814,47:35.8737,14:38.362,53:39.342}
{0:34.6615,31:42.9488,34:39.9848,4:36.404,32:37.0525,5:34.2489,8:39.1526,6:38.0238,30:38.4197,24:39.8195,29:41.1134,17:33.2505,51:53.6992,36:40.2026,12:29.0735,23:44.7419,58:54.8136,21:43.8701,11:32.6886,10:38.3348,15:39.4033,7:31.8767,28:39.8709,46:48.6905,33:48.2823,55:55.3113,54:57.0922,25:44.2385,3:31.4279,49:51.8609,41:45.2083,1:34.9492,26:35.8884,44:46.0803,37:43.1853,56:50.7422,42:42.9791,27:36.0862,50:47.9711,16:32.6319,40:49.3478,48:50.4242,39:41.4315,9:33.4014,52:52.0322,13:40.4484,43:53.0173,19:35.0671,59:56.1233,2:28.4088,20:40.8345,18:38.2078,22:37.5776,35:38.5466,57:54.5795,45:49.7901,38:42.2513,47:45.1426,14:39.4207,53:49.1879}
{0:31.095,31:32.9728,34:39.636,4:34.3013,32:41.8446,5:28.4737,8:26.4679,6:26.5191,30:31.7088,24:31.4136,29:39.1265,17:35.4412,51:46.7003,36:45.0843,12:33.4969,23:40.7772,58:48.654,21:36.3101,11:35.1787,10:34.1489,15:30.5257,7:33.0348,28:32.5186,46:39.5566,33:42.3056,55:38.3326,54:45.5542,25:41.5934,3:35.6996,49:38.7039,41:44.2388,1:25.7183,26:33.6149,44:36.2279,37:35.4684,56:44.5585,42:39.5804,27:33.6411,50:39.2585,16:28.1664,40:36.2601,48:45.2105,39:40.5561,9:32.9994,52:42.5461,13:36.3077,43:40.6249,19:39.5194,59:41.1103,2:32.7918,20:37.9871,18:33.1814,22:40.3647,35:38.6865,57:50.2142,45:39.4041,38:45.4922,47:45.4634,14:39.0352,53:42.9057}
{0:34.4492,31:45.2864,34:39.5465,4:32.8281,32:45.8013,5:30.8026,8:31.9161,6:29.2867,30:44.2537,24:43.1254,29:41.6674,17:34.0551,51:50.606,36:39.5513,12:31.8524,23:41.9697,58:53.3696,21:34.3641,11:36.4646,10:32.1035,15:31.7577,7:27.8234,28:34.2333,46:46.649,33:43.3145,55:43.759,54:50.6377,25:35.5346,3:25.653,49:48.7063,41:38.2204,1:26.4997,26:38.0108,44:48.5526,37:39.5448,56:53.8381,42:46.9668,27:36.6408,50:46.9668,16:35.9547,40:43.8715,48:51.9334,39:46.5856,9:30.9889,52:47.2478,13:37.4099,43:41.2845,19:31.3121,59:52.5364,2:34.6377,20:40.638,18:34.6152,22:40.1079,35:46.0647,57:46.5532,45:48.401,38:43.0698,47:42.3342,14:33.8718,53:53.846}
{0:32.9282,31:43.3178,34:38.2627,4:28.2378,32:46.7392,5:34.1956,8:37.3773,6:29.07,30:42.9667,24:40.0813,29:47.1276,17:38.1462,51:46.6271,36:48.1238,12:31.7928,23:38.9473,58:55.6344,21:42.1328,11:38.0678,10:35.1193,15:34.7982,7:38.1844,28:41.1526,46:51.2274,33:42.0113,55:53.3007,54:45.6738,25:39.0803,3:28.5386,49:53.3438,41:46.3903,1:31.5034,26:38.2585,44:46.8619,37:39.8544,56:57.0122,42:43.367,27:37.4565,50:52.8694,16:34.0113,40:49.3588,48:43.2548,39:41.6964,9:28.6012,52:55.2094,13:32.6312,43:47.5357,19:32.3592,59:54.6154,2:32.8783,20:33.5472,18:34.5159,22:34.5395,35:42.5012,57:49.9293,45:53.499,38:47.9821,47:50.4512,14:38.0998,53:46.424}
{0:34.3622,31:33.363,34:40.2664,4:36.0317,32:38.3103,5:29.542,8:37.1769,6:31.7275,30:37.8848,24:33.3515,29:35.6028,17:32.6973,51:39.7377,36:37.1751,12:38.0778,23:32.7719,58:40.1264,21:39.5534,11:31.3253,10:37.4628,15:31.2733,7:34.4601,28:32.7229,46:44.8601,33:37.5503,55:38.0284,54:41.8775,25:38.1071,3:30.0992,49:39.0834,41:33.6897,1:27.1068,26:29.9292,44:36.7854,37:43.1976,56:43.9107,42:40.1529,27:39.043,50:37.2724,16:37.0156,40:42.1209,48:34.2198,39:39.2653,9:31.7029,52:38.757,13:30.9719,43:43.6236,19:31.7798,59:45.236,2:25.2088,20:30.3118,18:33.4392,22:36.1439,35:42.4923,57:38.4414,45:42.0456,38:43.7339,47:45.429,14:37.5592,53:37.2856}
{0:33.8059,31:40.9889,34:38.0169,4:35.8644,32:30.9786,5:33.6325,8:27.6463,6:29.4165,30:30.9373,24:39.654,29:35.4978,17:35.4859,51:36.1107,36:34.5056,12:35.0868,23:35.1551,58:41.6091,21:36.4707,11:30.4921,10:28.3552,15:27.1686,7:37.2174,28:39.9021,46:42.446,33:39.8426,55:44.4446,54:44.0997,25:29.5228,3:31.3703,49:45.6795,41:34.0818,1:34.7596,26:35.3367,44:33.5275,37:36.1453,56:41.2366,42:40.7657,27:33.6498,50:44.0925,16:28.0376,40:37.1936,48:35.9507,39:32.8332,9:35.8945,52:39.3849,13:38.1755,43:37.994,19:39.3668,59:45.4775,2:33.8189,20:38.0177,18:34.8621,22:32.2268,35:32.1054,57:36.67,45:35.1382,38:38.8235,47:36.5786,14:28.0147,53:46.5171}
{0:34.1305,31:36.0432,34:44.7117,4:33.2242,32:39.2812,5:36.7435,8:34.8605,6:36.0272,30:42.9883,24:41.7111,29:43.9161,17:34.8586,51:44.388,36:46.937,12:39.0836,23:37.2951,58:50.787,21:38.3655,11:30.2044,10:28.3791,15:33.6361,7:27.5538,28:42.3265,46:47.1871,33:36.9139,55:50.8052,54:46.6462,25:37.601,3:30.5936,49:44.6131,41:51.7184,1:34.9165,26:41.6813,44:51.0962,37:40.5902,56:55.3442,42:49.7782,27:39.5348,50:46.355,16:40.2965,40:48.5252,48:54.0993,39:42.8357,9:31.425,52:49.2884,13:34.9599,43:50.7383,19:42.2147,59:48.7811,2:35.4584,20:39.7685,18:41.1845,22:35.786,35:41.9882,57:49.9628,45:44.9697,38:44.3657,47:45.3171,14:30.4466,53:54.0977}
{0:24.3456,31:36.2811,34:37.4125,4:26.9198,32:40.7584,5:30.5077,8:29.5573,6:27.8785,30:36.4305,24:32.8358,29:43.9011,17:39.7461,51:47.2805,36:43.8438,12:37.3762,23:41.9964,58:51.7966,21:37.8164,11:32.1855,10:33.4534,15:38.6795,7:29.284,28:43.5767,46:39.3906,33:40.4456,55:48.1568,54:44.1947,25:41.2309,3:35.3768,49:49.2203,41:42.3586,1:30.8076,26:44.1993,44:47.2092,37:38.1216,56:43.3129,42:46.5682,27:40.8592,50:50.2986,16:30.0653,40:38.5927,48:40.5828,39:39.1647,9:38.7845,52:43.4531,13:39.186,43:45.4791,19:41.3206,59:44.3003,2:24.7986,20:32.2706,18:31.7761,22:37.4266,35:39.2149,57:45.567,45:46.3618,38:39.0122,47:44.9108,14:40.0274,53:48.7537}
{0:32.8897,31:50.0712,34:40.192,4:31.6725,32:40.9565,5:33.9989,8:34.2443,6:34.2384,30:40.9986,24:44.9628,29:38.7611,17:39.6686,51:50.3913,36:49.894,12:41.485,23:45.9153,58:51.003,21:41.3018,11:31.422,10:35.7313,15:38.5162,7:37.535,28:48.1644,46:48.7771,33:45.6297,55:57.9029,54:49.8108,25:36.6608,3:32.8865,49:51.1755,41:53.7075,1:26.351,26:45.5809,44:45.2656,37:52.4411,56:52.9125,42:46.6566,27:46.1046,50:59.0165,16:42.0614,40:51.7704,48:48.4452,39:49.9614,9:39.9793,52:58.5854,13:36.958,43:44.4595,19:43.1852,59:56.9091,2:31.588,20:43.5095,18:36.768,22:34.9721,35:52.0132,57:51.632,45:46.4371,38:43.7098,47:45.9158,14:42.0701,53:53.5406}
{0:35.7022,31:42.503,34:35.5221,4:36.6984,32:41.6319,5:26.4159,8:29.3874,6:32.696,30:40.2604,24:38.1321,29:37.2892,17:39.835,51:43.9774,36:34.9448,12:32.8711,23:40.078,58:50.187,21:38.5563,11:36.5705,10:37.3475,15:30.8271,7:34.5439,28:35.1943,46:37.5468,33:40.7333,55:47.9936,54:44.3354,25:38.2958,3:25.9157,49:44.2088,41:44.9621,1:33.598,26:39.58,44:38.4535,37:34.4178,56:41.4307,42:36.3221,27:39.7118,50:43.5438,16:29.4173,40:38.217,48:44.2621,39:44.8266,9:36.5092,52:47.1065,13:28.0811,43:37.8975,19:38.5497,59:46.3896,2:32.6245,20:39.8368,18:32.1149,22:33.7897,35:45.6441,57:41.0734,45:43.365,38:42.3861,47:38.2217,14:35.2903,53:48.9249}
{0:26.1416,31:39.3584,34:48.7053,4:28.524,32:40.1499,5:32.1387,8:28.0304,6:27.4205,30:45.1658,24:40.2959,29:45.9937,17:41.2459,51:51.648,36:43.3898,12:37.383,23:41.1455,58:56.0517,21:39.1658,11:30.073,10:37.6978,15:37.5476,7:33.4699,28:39.8738,46:49.0936,33:38.8574,55:50.6722,54:46.1427,25:37.7648,3:29.1871,49:52.8474,41:47.1674,1:26.6056,26:45.1828,44:49.0084,37:44.3939,56:57.8287,42:46.3953,27:40.78,50:51.1066,16:35.9743,40:44.6977,48:45.7066,39:40.4922,9:36.1894,52:52.5541,13:35.6158,43:48.7574,19:35.6604,59:55.3586,2:29.7337,20:35.4171,18:37.8808,22:43.0266,35:40.9454,57:57.1102,45:47.0924,38:41.6612,47:47.1188,14:31.1017,53:47.863}
{0:27.7978,31:46.5495,34:46.6515,4:37.2533,32:42.9372,5:32.011,8:35.4147,6:32.855,30:38.8987,24:45.8261,29:46.7024,17:31.8193,51:56.1285,36:42.5642,12:33.0645,23:41.0283,58:52.2899,21:37.844,11:29.6206,10:33.2754,15:30.373,7:31.9664,28:40.0883,46:44.9293,33:40.5038,55:52.5183,54:51.1673,25:46.0554,3:34.1524,49:53.8005,41:44.9339,1:27.0803,26:43.4515,44:46.6153,37:43.2656,56:59.6576,42:45.3765,27:36.473,50:48.4153,16:38.907,40:46.0909,48:55.3343,39:50.4424,9:38.7029,52:50.2097,13:39.7505,43:42.7484,19:35.1987,59:58.742,2:27.6254,20:42.6438,18:32.1602,22:35.6661,35:43.2798,57:60.131,45:43.7765,38:48.0605,47:51.9557,14:30.428,53:49.6781}
{0:35.3658,31:36.2159,34:40.4265,4:34.3913,32:43.2886,5:34.8206,8:35.3009,6:37.1329,30:43.7887,24:38.3968,29:32.4343,17:31.1797,51:38.4426,36:40.9193,12:29.8463,23:40.9596,58:41.2354,21:38.4911,11:37.9181,10:35.0674,15:30.818,7:26.5111,28:35.7605,46:39.2464,33:33.2066,55:43.1266,54:46.1958,25:42.1902,3:28.9865,49:39.4752,41:39.6253,1:25.4839,26:41.7851,44:37.562,37:42.7477,56:41.5997,42:40.9837,27:35.5207,50:41.9165,16:33.3445,40:39.8725,48:41.629,39:40.8147,9:35.403,52:49.1552,13:33.8361,43:36.063,19:36.6664,59:50.3017,2:31.5284,20:35.8758,18:39.708,22:33.4345,35:43.914,57:43.5265,45:47.3014,38:36.3027,47:48.2103,14:29.847,53:40.0426}
{0:33.168,31:47.9425,34:47.0254,4:26.7101,32:42.054,5:34.8409,8:36.3332,6:34.4721,30:38.7461,24:37.5393,29:45.2067,17:42.5218,51:56.2394,36:51.0535,12:37.6618,23:35.136,58:60.9459,21:34.9865,11:40.7698,10:30.8532,15:33.0097,7:27.3897,28:41.6548,46:54.4644,33:43.5984,55:58.3704,54:59.4509,25:46.3161,3:34.0712,49:55.2879,41:50.5264,1:27.9691,26:46.2263,44:47.8188,37:42.8787,56:58.415,42:53.3002,27:44.3467,50:46.3889,16:35.3877,40:42.371,48:53.7865,39:41.9191,9:35.0426,52:57.371,13:41.7044,43:46.9743,19:39.5165,59:50.9952,2:33.0336,20:37.9862,18:40.6698,22:36.5118,35:47.586,57:50.8586,45:50.2397,38:42.1338,47:46.9538,14:36.4214,53:55.9383}
{0:30.4792,31:47.9548,34:46.4378,4:35.9722,32:37.0961,5:36.7643,8:36.1482,6:27.1498,30:40.9005,24:44.7525,29:37.8995,17:33.88,51:54.6026,36:39.4416,12:39.3115,23:44.3103,58:55.4418,21:39.6928,11:40.0995,10:31.9509,15:36.7267,7:35.6619,28:35.8919,46:48.529,33:39.1584,55:53.4797,54:46.8738,25:43.7823,3:32.7109,49:53.6195,41:47.7023,1:30.4352,26:42.1937,44:46.7506,37:42.3236,56:47.8668,42:42.8136,27:42.0083,50:47.7301,16:38.9297,40:45.1002,48:50.7309,39:42.5366,9:32.7936,52:45.0299,13:37.0013,43:50.9578,19:42.2336,59:53.5716,2:31.5963,20:36.3361,18:37.3455,22:44.0977,35:45.2822,57:49.0004,45:52.2104,38:44.177,47:43.1706,14:34.874,53:51.8239}
{0:32.3432,31:35.5659,34:40.344,4:26.1914,32:43.492,5:35.4425,8:27.6488,6:29.1227,30:38.9248,24:34.845,29:43.1974,17:40.6177,51:53.5436,36:47.4729,12:33.1691,23:33.1638,58:50.6687,21:35.5235,11:37.0215,10:36.1119,15:36.2194,7:31.9731,28:36.6057,46:48.5116,33:38.0216,55:52.3988,54:44.2902,25:39.5062,3:36.4052,49:41.4594,41:48.5374,1:36.3071,26:38.9345,44:43.7568,37:46.9747,56:45.3927,42:49.5793,27:33.4707,50:46.0434,16:31.36,40:46.1108,48:46.0003,39:40.1522,9:32.0922,52:49.2516,13:35.2322,43:46.6475,19:39.8448,59:52.3506,2:35.1247,20:36.0001,18:30.9077,22:38.8957,35:41.5797,57:52.0673,45:40.7776,38:43.6826,47:45.3375,14:40.1699,53:42.5785}
{0:27.3531,31:48.2631,34:49.5063,4:33.4589,32:43.2993,5:26.9223,8:34.7305,6:28.3451,30:44.8793,24:39.6341,29:41.8329,17:38.3494,51:49.0993,36:52.4339,12:38.3076,23:43.8943,58:54.7289,21:38.095,11:39.7711,10:34.9419,15:40.6418,7:29.7111,28:37.3713,46:53.3144,33:46.2976,55:50.8168,54:51.5154,25:41.2979,3:34.5937,49:57.2121,41:45.3171,1:25.5213,26:38.096,44:46.3855,37:52.916,56:51.9316,42:48.9767,27:40.3157,50:48.6114,16:32.1971,40:47.7658,48:51.1509,39:44.9075,9:34.1569,52:52.6767,13:31.8313,43:52.6804,19:44.0819,59:61.659,2:29.12,20:40.4706,18:43.8125,22:40.9772,35:49.1955,57:59.1478,45:48.1954,38:53.3404,47:55.7163,14:34.9118,53:58.6024}
{0:24.9243,31:38.3383,34:39.0474,4:34.9922,32:37.3177,5:35.4305,8:35.7397,6:34.9666,30:35.8557,24:33.3844,29:34.4332,17:36.8996,51:41.963,36:44.0215,12:36.1614,23:34.8872,58:52.2696,21:39.1843,11:32.6381,10:27.7902,15:34.0267,7:27.5581,28:44.1856,46:48.1818,33:38.3065,55:47.2971,54:50.8545,25:31.5489,3:34.5193,49:48.8762,41:37.9139,1:32.8745,26:38.7227,44:39.295,37:43.1543,56:44.6721,42:43.0857,27:41.2024,50:50.2708,16:36.8333,40:43.0985,48:41.1265,39:36.8397,9:31.2382,52:51.3178,13:39.8309,43:40.7167,19:38.2467,59:44.0103,2:31.5197,20:32.2014,18:33.1744,22:39.6869,35:46.2477,57:46.6612,45:37.5623,38:37.9602,47:38.7467,14:34.4529,53:46.4597}
{0:29.9787,31:35.2097,34:38.7009,4:28.7972,32:35.3946,5:30.2258,8:33.1842,6:25.9078,30:35.7784,24:34.0663,29:40.8565,17:37.3519,51:42.3068,36:42.7579,12:33.5259,23:40.9798,58:44.1296,21:32.6569,11:28.9623,10:28.4837,15:37.8599,7:32.0277,28:39.0765,46:48.4196,33:44.0842,55:44.0028,54:43.3112,25:42.3135,3:28.0369,49:40.1598,41:42.9168,1:26.9214,26:36.7227,44:49.8599,37:39.8416,56:44.5329,42:43.1707,27:41.2863,50:48.9578,16:32.8174,40:43.2505,48:46.1714,39:48.3103,9:36.5745,52:41.2483,13:31.8056,43:44.3941,19:35.0328,59:46.7487,2:29.0286,20:32.9145,18:36.6338,22:41.4258,35:42.3622,57:45.2583,45:47.3046,38:43.064,47:46.327,14:33.7718,53:43.2303}
{0:24.4487,31:46.1541,34:39.3513,4:28.8399,32:37.1159,5:33.3639,8:37.407,6:33.0715,30:42.0494,24:32.7088,29:39.2968,17:31.1202,51:44.9131,36:39.3974,12:34.2106,23:33.4077,58:45.8678,21:37.2219,11:35.5111,10:31.9234,15:37.4172,7:36.7042,28:45.1905,46:47.5206,33:44.8689,55:49.7856,54:53.7033,25:36.9497,3:32.3888,49:48.7008,41:45.4482,1:25.0134,26:42.3157,44:43.6973,37:46.0369,56:49.1521,42:47.2629,27:34.0062,50:41.6964,16:30.1436,40:42.7011,48:42.8207,39:37.0373,9:28.3802,52:49.5792,13:37.1365,43:47.7618,19:35.2725,59:45.25,2:28.8794,20:36.4637,18:41.7328,22:31.5265,35:42.7373,57:47.2806,45:45.1319,38:48.4656,47:40.125,14:36.5352,53:52.9498}
{0:25.0866,31:36.6843,34:42.882,4:26.7692,32:43.2105,5:29.2883,8:31.8486,6:31.4316,30:39.5781,24:33.2749,29:32.821,17:33.8484,51:48.3568,36:37.5428,12:37.752,23:38.094,58:43.8585,21:32.2492,11:29.1236,10:31.3251,15:28.0564,7:33.5368,28:38.9015,46:39.4305,33:35.3478,55:47.0844,54:49.7314,25:37.9128,3:36.812,49:40.3373,41:43.3793,1:33.6042,26:31.3777,44:37.6192,37:41.299,56:48.6435,42:44.4449,27:33.6757,50:41.1443,16:35.8491,40:40.0002,48:37.5259,39:40.3543,9:27.342,52:40.9312,13:31.0719,43:36.157,19:29.0564,59:44.7519,2:27.7344,20:35.6494,18:38.8098,22:38.6362,35:33.9724,57:39.2195,45:37.7106,38:42.1035,47:40.9199,14:36.7494,53:46.4104}
{0:25.9184,31:39.26,34:44.0871,4:26.6228,32:35.4234,5:32.8814,8:33.2648,6:35.8457,30:37.5747,24:41.9528,29:33.2403,17:41.1937,51:46.953,36:36.2934,12:30.7413,23:33.9128,58:49.1692,21:32.6776,11:35.9902,10:30.9717,15:35.1516,7:30.87,28:42.8199,46:39.0932,33:41.8602,55:45.3975,54:43.0982,25:34.5784,3:36.2824,49:44.2526,41:48.0469,1:33.6631,26:37.0363,44:44.631,37:47.1174,56:42.5138,42:46.5807,27:35.1162,50:42.6435,16:35.5343,40:42.3306,48:47.4142,39:47.303,9:31.9928,52:42.7895,13:32.2926,43:41.764,19:41.5534,59:43.9974,2:27.4047,20:31.1792,18:40.5702,22:34.1609,35:40.1466,57:49.9307,45:46.1473,38:41.8765,47:46.4729,14:38.6581,53:45.5254}
{0:32.4012,31:41.8884,34:35.7068,4:26.9644,32:39.9547,5:29.2071,8:33.5701,6:34.1624,30:36.4535,24:36.0959,29:35.9684,17:40.2198,51:42.2507,36:36.7615,12:30.2,23:37.2776,58:41.5126,21:33.3897,11:36.1302,10:29.2003,15:29.0294,7:29.3236,28:35.1252,46:36.8678,33:40.5298,55:47.291,54:48.8509,25:36.6402,3:33.4046,49:45.4818,41:37.8267,1:34.5121,26:33.6926,44:40.3585,37:38.919,56:41.9752,42:37.6645,27:39.9478,50:37.4566,16:36.6992,40:43.7018,48:46.9679,39:39.4512,9:26.9176,52:37.9349,13:38.0071,43:45.498,19:39.5571,59:42.9404,2:28.8378,20:40.8879,18:38.462,22:33.9913,35:42.2173,57:50.0243,45:46.5711,38:37.7777,47:45.7098,14:35.6305,53:42.3033}
{0:26.2907,31:42.9042,34:34.4977,4:27.9254,32:40.5715,5:36.0729,8:37.747,6:26.0404,30:33.7061,24:40.415,29:32.6386,17:30.1346,51:37.6515,36:43.1379,12:35.1139,23:39.6031,58:46.7807,21:40.4595,11:38.297,10:35.4918,15:30.969,7:35.11,28:41.2433,46:37.9355,33:34.364,55:43.7406,54:47.3185,25:41.466,3:29.6004,49:44.1675,41:38.0543,1:24.5427,26:37.6244,44:42.3345,37:42.7975,56:45.1569,42:46.0637,27:31.208,50:37.6905,16:32.5292,40:34.742,48:37.7019,39:37.7992,9:37.2857,52:47.6163,13:33.7298,43:36.5564,19:39.8643,59:44.1602,2:35.2732,20:30.6768,18:29.8892,22:36.7131,35:32.5183,57:42.8827,45:40.0886,38:38.4723,47:43.4449,14:29.5949,53:46.9035}
{0:31.8141,31:35.7653,34:43.5334,4:28.4594,32:47.5262,5:37.8327,8:28.5041,6:36.5029,30:43.384,24:41.1622,29:36.8828,17:36.8038,51:48.1589,36:44.9776,12:35.5745,23:38.2233,58:55.4451,21:36.2665,11:30.512,10:35.5606,15:32.7633,7:33.6382,28:39.2841,46:48.4682,33:37.7732,55:56.4902,54:51.7263,25:39.8328,3:37.07,49:49.6553,41:40.4512,1:36.1164,26:36.2829,44:49.7983,37:39.0599,56:45.5992,42:41.3325,27:42.5656,50:52.3742,16:39.7515,40:45.933,48:44.7012,39:40.9271,9:37.288,52:53.1435,13:34.3248,43:52.0083,19:35.8574,59:51.0244,2:31.3216,20:38.216,18:34.534,22:32.3522,35:39.4991,57:46.2136,45:52.1947,38:47.045,47:46.6269,14:38.9172,53:54.4522}
{0:30.098,31:41.184,34:32.7388,4:27.488,32:41.4957,5:32.3672,8:36.3818,6:36.3834,30:35.6813,24:33.251,29:33.3105,17:37.3713,51:44.9218,36:42.1943,12:29.2314,23:37.2178,58:46.4159,21:36.9663,11:34.1713,10:30.205,15:30.143,7:37.4931,28:41.6733,46:45.033,33:39.0569,55:42.3216,54:47.5935,25:34.4477,3:36.5562,49:46.4613,41:44.2449,1:25.3814,26:35.9889,44:35.4861,37:33.6754,56:46.1667,42:37.701,27:33.1025,50:45.7793,16:37.6901,40:35.2389,48:46.8282,39:34.1964,9:36.7034,52:41.2113,13:30.1079,43:38.2374,19:39.5028,59:39.2915,2:24.496,20:29.1619,18:37.824,22:40.5268,35:35.0849,57:38.4624,45:38.3034,38:43.9274,47:39.2066,14:32.833,53:40.3333}
{0:26.7879,31:43.3542,34:48.2579,4:32.7437,32:42.4504,5:33.4589,8:32.9304,6:26.4667,30:40.2218,24:35.5618,29:39.5253,17:40.0624,51:47.7028,36:46.2505,12:38.8846,23:38.4426,58:50.1863,21:42.3536,11:33.4704,10:39.4117,15:40.2329,7:34.1312,28:35.6398,46:48.5242,33:38.0364,55:54.122,54:53.9502,25:41.3182,3:35.6242,49:42.9794,41:47.4922,1:31.3263,26:43.8472,44:42.5456,37:47.1436,56:50.4622,42:47.6647,27:46.3142,50:48.3437,16:37.6777,40:39.5647,48:45.3487,39:41.5004,9:32.1878,52:51.3992,13:34.3226,43:47.3625,19:41.5488,59:48.0509,2:27.5762,20:32.7443,18:41.2775,22:36.4384,35:46.2792,57:52.5641,45:47.8669,38:39.7407,47:47.619,14:36.0448,53:53.6267}
{0:31.228,31:44.0324,34:49.621,4:31.564,32:45.9146,5:35.6257,8:31.7055,6:28.5426,30:48.329,24:39.8546,29:47.2624,17:37.4674,51:53.9512,36:45.4942,12:33.6738,23:38.5857,58:61.7568,21:45.5331,11:39.6861,10:32.0022,15:37.9742,7:27.6846,28:42.5486,46:55.4625,33:42.9399,55:55.0496,54:56.4809,25:46.5066,3:33.2714,49:46.3226,41:54.5188,1:26.2065,26:47.7635,44:49.6369,37:50.237,56:53.9247,42:50.0327,27:38.1385,50:52.6551,16:35.9135,40:43.5421,48:51.6004,39:43.5573,9:28.3834,52:48.8702,13:34.2638,43:46.0956,19:35.4338,59:56.7657,2:30.9115,20:40.9041,18:43.8132,22:45.277,35:42.0098,57:53.9208,45:51.6186,38:45.7366,47:51.1941,14:30.9116,53:56.0503}
{0:28.4727,31:35.8804,34:44.027,4:31.2795,32:36.3304,5:29.1168,8:28.1968,6:31.8707,30:39.5318,24:40.611,29:38.9621,17:37.3332,51:47.0568,36:46.764,12:38.2186,23:32.8477,58:45.3936,21:33.6537,11:34.49,10:39.1605,15:32.1245,7:38.4835,28:35.9172,46:42.4674,33:36.2708,55:48.9223,54:50.492,25:33.627,3:28.7568,49:44.8619,41:49.0656,1:31.5602,26:42.1151,44:39.9923,37:42.503,56:48.7547,42:48.6601,27:33.9285,50:48.9555,16:40.6192,40:39.1861,48:41.3213,39:43.8915,9:29.324,52:43.5372,13:38.6595,43:49.9823,19:32.3717,59:51.0343,2:30.4749,20:37.5497,18:36.0434,22:33.0634,35:40.8989,57:46.6409,45:50.0109,38:48.0721,47:42.4051,14:41.0727,53:45.0368}
{0:24.7267,31:43.0935,34:37.7251,4:31.2707,32:42.248,5:28.4246,8:37.919,6:28.3125,30:40.0035,24:37.9994,29:42.1585,17:34.474,51:40.5546,36:44.3392,12:30.1753,23:33.6443,58:47.3902,21:32.9619,11:28.274,10:32.5195,15:36.3192,7:27.8699,28:38.8335,46:37.6888,33:35.0372,55:45.3775,54:49.5408,25:38.9386,3:27.5392,49:45.9538,41:42.8556,1:32.7481,26:36.3561,44:44.2983,37:45.4385,56:48.8332,42:45.5868,27:35.3748,50:46.1358,16:32.2506,40:42.14,48:39.4736,39:34.9254,9:33.0452,52:41.6554,13:31.9852,43:45.9469,19:38.3023,59:43.178,2:33.0513,20:34.8734,18:40.0221,22:31.1455,35:36.9207,57:39.1683,45:46.2639,38:35.8543,47:44.5304,14:29.2459,53:43.5571}
{0:25.4755,31:43.1592,34:44.6834,4:32.6194,32:47.8099,5:30.4798,8:37.9452,6:37.9551,30:36.7713,24:38.2596,29:45.834,17:36.601,51:52.2392,36:42.5564,12:31.9371,23:39.3214,58:57.2677,21:43.1816,11:30.1416,10:36.0459,15:32.2799,7:34.1946,28:35.2972,46:52.5302,33:47.7542,55:47.8582,54:48.9432,25:37.3858,3:31.7309,49:49.6146,41:41.0779,1:28.618,26:44.9489,44:43.8274,37:39.0434,56:54.8202,42:49.8182,27:34.8175,50:43.9101,16:40.19,40:44.8931,48:44.5927,39:45.3365,9:29.9011,52:49.5204,13:39.0302,43:43.6792,19:36.3028,59:52.3038,2:30.6357,20:38.662,18:36.3015,22:40.7122,35:38.1621,57:50.4295,45:50.1309,38:49.5285,47:42.9092,14:31.6419,53:44.9036}
{0:26.3572,31:40.4779,34:38.8901,4:34.3217,32:42.9841,5:36.284,8:30.4632,6:30.3474,30:38.8472,24:32.1113,29:31.8379,17:31.4379,51:38.4651,36:43.5047,12:34.2319,23:41.6738,58:47.387,21:34.4207,11:34.712,10:28.953,15:34.4141,7:28.5219,28:34.19,46:44.2468,33:38.3757,55:42.0784,54:46.5458,25:41.205,3:26.7152,49:40.915,41:43.8809,1:33.8344,26:33.7198,44:46.1206,37:37.3786,56:42.1246,42:40.7921,27:40.0825,50:43.6375,16:33.2642,40:36.7977,48:45.6802,39:38.5311,9:28.5734,52:42.4387,13:27.7779,43:43.0078,19:33.6535,59:47.7001,2:25.0056,20:36.4255,18:33.5027,22:32.2456,35:41.4183,57:48.6845,45:40.2207,38:38.6531,47:45.6961,14:38.1341,53:47.2932}
{0:24.6489,31:44.5167,34:43.1069,4:31.8226,32:43.5551,5:29.2669,8:34.4524,6:26.8974,30:41.4984,24:36.6026,29:39.2226,17:37.6285,51:53.6864,36:41.9005,12:39.6156,23:41.4516,58:51.9602,21:38.7545,11:39.4187,10:29.5422,15:31.7766,7:26.6107,28:34.2749,46:45.2533,33:46.2737,55:45.734,54:46.588,25:36.1195,3:32.7512,49:48.4492,41:44.1169,1:31.2839,26:42.9675,44:40.9427,37:39.3583,56:53.3818,42:48.889,27:33.6817,50:51.5267,16:37.8726,40:41.5426,48:45.7478,39:48.4083,9:28.1966,52:51.3172,13:40.3127,43:42.2135,19:31.8649,59:45.411,2:34.2765,20:39.0034,18:38.7321,22:38.3063,35:40.8373,57:55.2757,45:48.2482,38:39.2858,47:46.2637,14:31.421,53:44.1709}
{0:32.5478,31:38.6879,34:41.1709,4:36.3129,32:40.349,5:26.8264,8:32.9603,6:29.4301,30:39.6138,24:34.2872,29:43.6927,17:39.3425,51:43.2299,36:37.7411,12:35.1879,23:35.7306,58:45.1562,21:38.7487,11:31.695,10:37.6376,15:39.1654,7:36.1846,28:42.3345,46:43.5444,33:44.2939,55:46.1633,54:54.6543,25:36.6112,3:27.3467,49:43.9353,41:38.4589,1:32.5061,26:44.2668,44:45.4976,37:39.5935,56:47.8938,42:39.5526,27:39.9184,50:46.9441,16:32.1929,40:39.3822,48:48.7578,39:43.3212,9:29.9999,52:45.4969,13:34.2799,43:44.7633,19:38.059,59:52.3146,2:29.5296,20:36.8012,18:34.9055,22:34.3022,35:42.3476,57:44.4914,45:41.2314,38:47.4305,47:49.997,14:40.499,53:48.245}
{0:28.2043,31:39.1562,34:44.5124,4:36.1705,32:39.3591,5:35.9897,8:37.4854,6:29.6103,30:46.8228,24:42.7145,29:42.3377,17:39.7531,51:51.3803,36:46.6343,12:36.3086,23:45.6821,58:55.5164,21:44.8007,11:33.639,10:33.0931,15:34.9836,7:38.3947,28:39.4728,46:48.0823,33:48.5248,55:54.6252,54:51.0508,25:42.9093,3:36.9632,49:56.0442,41:45.6336,1:30.5533,26:42.477,44:48.4274,37:41.9701,56:53.3052,42:50.0482,27:46.3234,50:47.6652,16:39.6592,40:48.8065,48:45.7531,39:51.9475,9:38.1906,52:47.8372,13:36.2005,43:45.7204,19:40.5471,59:54.1351,2:35.0831,20:33.9892,18:42.7715,22:37.516,35:41.5565,57:60.1222,45:55.1062,38:48.0125,47:47.6958,14:31.8807,53:58.5492}
{0:33.3222,31:37.7616,34:41.3666,4:29.6994,32:36.6362,5:35.817,8:37.8753,6:32.9363,30:33.4452,24:34.2669,29:37.0552,17:38.2577,51:38.0055,36:36.362,12:34.7108,23:35.2212,58:48.7685,21:39.1869,11:30.3275,10:33.9937,15:34.5089,7:36.3042,28:41.5663,46:37.1896,33:38.6821,55:45.0886,54:45.0495,25:40.5836,3:36.3573,49:47.0829,41:43.009,1:29.5011,26:32.8369,44:39.5597,37:42.6861,56:46.2197,42:41.5942,27:40.9529,50:37.5952,16:39.136,40:39.9532,48:44.0763,39:34.4654,9:33.5941,52:39.7954,13:34.2747,43:39.1876,19:40.928,59:49.3679,2:25.4313,20:41.0262,18:34.1652,22:37.9073,35:39.4326,57:41.8202,45:42.0786,38:35.6102,47:38.1805,14:29.8171,53:39.1023}
{0:33.3211,31:41.9806,34:40.64,4:33.5971,32:37.9706,5:28.5332,8:26.9444,6:30.8284,30:38.7505,24:39.1629,29:41.126,17:36.1789,51:48.0844,36:40.8873,12:29.395,23:33.2312,58:50.0648,21:34.7481,11:35.0296,10:36.859,15:33.2411,7:36.7631,28:40.8325,46:43.564,33:43.8946,55:50.824,54:52.5518,25:43.7029,3:29.7809,49:47.4563,41:39.3984,1:33.8022,26:38.4312,44:48.4483,37:48.4388,56:54.042,42:42.7527,27:36.7057,50:44.4217,16:30.6945,40:47.4346,48:41.392,39:49.6617,9:30.4062,52:46.5641,13:32.4125,43:41.9136,19:32.9842,59:50.3061,2:25.1264,20:36.6421,18:42.3222,22:41.635,35:47.2585,57:56.144,45:46.999,38:38.9033,47:50.4083,14:31.2301,53:48.2262}
{0:31.7597,31:41.7926,34:39.2254,4:32.4293,32:38.2943,5:29.3602,8:27.7433,6:33.2741,30:36.1531,24:42.5696,29:38.6222,17:39.6908,51:51.0468,36:47.4275,12:29.176,23:41.5827,58:48.1408,21:35.6879,11:30.5158,10:34.749,15:30.5461,7:31.7786,28:41.7174,46:51.9668,33:37.6334,55:53.1001,54:51.2025,25:36.2763,3:31.7494,49:53.4588,41:46.3298,1:26.7631,26:43.5169,44:44.75,37:38.1094,56:53.387,42:39.3872,27:42.7135,50:45.1991,16:41.4827,40:50.1906,48:43.9532,39:45.9487,9:28.1499,52:54.3225,13:30.8084,43:48.7683,19:33.3844,59:48.4244,2:34.0283,20:38.5006,18:32.8415,22:33.8578,35:46.2512,57:51.8481,45:44.4633,38:38.1992,47:45.8226,14:39.5435,53:47.1479}
{0:27.5209,31:39.6793,34:35.808,4:34.1096,32:43.0327,5:29.2369,8:29.4867,6:26.0058,30:37.3753,24:36.2942,29:38.101,17:34.7974,51:38.653,36:40.6234,12:38.5963,23:31.8876,58:45.7649,21:41.2546,11:38.3381,10:29.6593,15:35.7926,7:30.209,28:42.3229,46:41.4218,33:41.2381,55:43.2234,54:45.3095,25:31.7451,3:30.5883,49:43.823,41:36.7261,1:24.4954,26:41.8245,44:38.249,37:42.2241,56:46.3451,42:37.7775,27:37.9889,50:46.7079,16:30.2259,40:34.9903,48:41.9998,39:40.33,9:32.6091,52:42.9917,13:36.8248,43:40.1949,19:40.9726,59:47.8313,2:31.073,20:39.5,18:34.2268,22:38.3154,35:41.3902,57:45.7822,45:45.1358,38:41.0002,47:36.5087,14:38.9036,53:46.0701}
{0:32.3957,31:43.0717,34:35.9991,4:30.9793,32:33.52,5:36.8497,8:30.0815,6:26.7479,30:39.1234,24:42.2316,29:39.542,17:30.6748,51:44.9676,36:39.766,12:37.5669,23:38.3258,58:44.7413,21:36.901,11:36.6411,10:29.4789,15:34.0419,7:27.1984,28:41.832,46:41.974,33:37.2032,55:42.6728,54:45.29,25:41.7982,3:25.886,49:38.8372,41:41.9821,1:32.2213,26:36.1144,44:39.3635,37:42.7966,56:47.5818,42:47.7816,27:42.6318,50:42.5553,16:30.0568,40:40.1335,48:40.7163,39:42.7434,9:37.0796,52:46.7912,13:30.026,43:41.1944,19:33.9075,59:51.312,2:28.0688,20:39.2913,18:31.2297,22:34.2637,35:37.8139,57:43.3338,45:42.0016,38:47.1673,47:45.4776,14:36.9319,53:46.3435}
{0:31.4318,31:39.3462,34:40.7883,4:36.1714,32:44.6718,5:34.0891,8:38.2516,6:29.1051,30:37.7133,24:34.0653,29:43.8566,17:38.1595,51:47.9871,36:38.2953,12:29.7808,23:34.8711,58:43.9403,21:32.8299,11:31.3416,10:31.1552,15:36.6111,7:30.8835,28:37.5244,46:44.5479,33:35.3403,55:52.3466,54:49.6172,25:35.3912,3:36.9115,49:43.6927,41:44.3924,1:30.3095,26:42.0429,44:47.7029,37:46.818,56:49.8546,42:42.6499,27:41.3847,50:38.9958,16:37.9999,40:39.0032,48:49.3061,39:36.446,9:35.4753,52:41.9282,13:36.1498,43:37.3629,19:38.7071,59:52.9418,2:28.1229,20:33.2127,18:36.0045,22:40.5084,35:40.8014,57:51.4283,45:49.2231,38:38.4677,47:44.2041,14:29.0212,53:41.7305}
{0:30.9449,31:43.4577,34:36.6205,4:36.3021,32:36.2302,5:29.505,8:32.8924,6:34.6694,30:44.265,24:44.2468,29:44.1664,17:41.4691,51:43.8721,36:41.6106,12:31.0555,23:35.8777,58:47.324,21:39.4787,11:32.8752,10:37.971,15:37.0662,7:30.524,28:45.7637,46:42.5207,33:41.388,55:46.1693,54:47.0024,25:35.2585,3:29.9887,49:49.9089,41:39.2986,1:24.5183,26:38.3573,44:49.5644,37:39.5404,56:55.8344,42:51.1563,27:44.4224,50:42.5705,16:40.313,40:42.7474,48:52.8935,39:39.0861,9:37.4005,52:51.3467,13:30.4222,43:40.1715,19:31.6493,59:45.9599,2:30.0238,20:41.9018,18:39.0166,22:36.7163,35:44.3547,57:47.2937,45:42.9311,38:48.9748,47:49.1011,14:35.5124,53:43.9797}
{0:24.2596,31:43.077,34:41.154,4:36.2375,32:38.3446,5:37.0042,8:35.1197,6:36.2248,30:39.1167,24:41.3544,29:43.2969,17:36.4914,51:50.9448,36:48.6909,12:31.4669,23:38.1208,58:53.4738,21:32.5474,11:29.8328,10:36.6445,15:39.7841,7:28.0765,28:40.5013,46:47.0609,33:44.303,55:53.9625,54:53.3005,25:35.7972,3:33.5624,49:48.5702,41:45.2213,1:27.5917,26:41.518,44:44.1321,37:45.0179,56:56.3839,42:47.9727,27:34.2679,50:45.3147,16:37.1638,40:41.7677,48:42.7847,39:47.4285,9:37.8498,52:45.8286,13:34.2231,43:40.2393,19:35.056,59:52.7202,2:26.4535,20:39.4049,18:34.9427,22:39.5079,35:41.954,57:48.541,45:40.8774,38:48.6085,47:51.9444,14:34.4477,53:45.3599}
{0:25.8974,31:36.1887,34:34.9508,4:31.5096,32:36.9847,5:25.3241,8:29.6269,6:32.7738,30:37.5482,24:34.5049,29:34.5786,17:37.8286,51:35.8929,36:40.8654,12:27.5392,23:29.7782,58:47.3587,21:40.8691,11:29.2395,10:37.0871,15:33.2183,7:33.0046,28:41.2569,46:38.0046,33:43.2438,55:39.5644,54:42.1655,25:35.4544,3:31.9482,49:42.8057,41:37.4821,1:30.3572,26:34.3597,44:35.0005,37:42.2105,56:46.1136,42:36.4255,27:32.074,50:47.2735,16:30.8467,40:33.8607,48:41.1904,39:36.6436,9:29.8805,52:42.9993,13:32.8076,43:44.0834,19:32.7207,59:42.8935,2:26.7253,20:33.4903,18:33.0274,22:30.8909,35:36.1548,57:39.7445,45:43.5379,38:35.5956,47:39.0922,14:35.3457,53:42.0785}
{0:34.512,31:44.155,34:49.8244,4:34.8758,32:45.9697,5:37.0063,8:35.3908,6:32.0426,30:47.4574,24:42.2226,29:46.8945,17:38.0116,51:48.2031,36:46.3063,12:38.3222,23:43.2277,58:50.8383,21:34.6701,11:36.0216,10:38.0707,15:34.0792,7:30.1627,28:37.6568,46:49.042,33:39.4868,55:48.1937,54:50.2935,25:44.8904,3:29.6349,49:54.3581,41:43.0782,1:29.3786,26:38.6748,44:44.0108,37:42.0869,56:56.5035,42:46.1992,27:45.7691,50:54.5156,16:35.0552,40:48.8712,48:47.4926,39:47.4875,9:36.7991,52:55.8412,13:34.6606,43:48.9801,19:42.3469,59:51.3814,2:28.4176,20:41.7182,18:43.2581,22:39.4627,35:42.777,57:49.2957,45:45.7621,38:50.7676,47:54.3233,14:32.816,53:53.0712}
{0:28.5737,31:41.8581,34:33.9088,4:29.2166,32:44.4166,5:27.1335,8:30.8984,6:34.9329,30:33.8597,24:41.8052,29:35.8485,17:35.6442,51:49.2523,36:33.6809,12:28.1787,23:31.155,58:46.5791,21:38.6828,11:28.642,10:31.9925,15:35.8828,7:37.0676,28:38.8886,46:37.1892,33:38.5441,55:41.8289,54:46.5083,25:39.8395,3:30.7435,49:41.1267,41:37.9112,1:31.9801,26:41.4069,44:41.6295,37:43.8169,56:49.0871,42:43.2337,27:32.402,50:47.8348,16:34.2594,40:40.8735,48:47.4895,39:42.7194,9:33.715,52:38.1268,13:35.8786,43:39.8462,19:38.1146,59:40.5788,2:35.536,20:40.1006,18:31.4932,22:34.5627,35:43.6956,57:51.0918,45:44.4557,38:41.9056,47:37.2161,14:32.3787,53:38.1232}
{0:27.9149,31:42.031,34:42.0912,4:28.1805,32:35.355,5:35.8317,8:31.8268,6:34.2307,30:34.9589,24:32.4229,29:32.8249,17:35.3426,51:41.9849,36:41.0125,12:33.1625,23:30.5224,58:40.2984,21:38.4923,11:36.2327,10:33.6007,15:27.786,7:34.7097,28:32.303,46:40.9418,33:35.7239,55:42.8943,54:45.6682,25:34.2892,3:31.441,49:43.7073,41:33.3386,1:31.2197,26:41.16,44:34.3911,37:37.5009,56:43.4515,42:33.6597,27:30.3691,50:37.4511,16:38.2295,40:33.3503,48:35.6908,39:41.3779,9:36.2504,52:46.2375,13:33.5251,43:39.5846,19:31.7514,59:39.8326,2:25.4599,20:35.0484,18:38.4068,22:34.3274,35:43.0975,57:43.3451,45:41.1723,38:34.3859,47:44.6002,14:38.4085,53:38.7559}
{0:33.7673,31:37.6095,34:44.3571,4:26.2249,32:44.1691,5:32.8785,8:26.9596,6:37.5451,30:35.1179,24:38.8292,29:33.6241,17:29.8644,51:50.2274,36:36.3421,12:34.1618,23:41.9414,58:49.1241,21:40.0573,11:35.6373,10:33.4428,15:31.4546,7:32.3493,28:43.7381,46:38.5132,33:34.7551,55:42.4613,54:42.3923,25:40.8276,3:36.4406,49:44.6729,41:42.8285,1:32.8066,26:34.5988,44:44.9903,37:40.1725,56:50.2119,42:41.4037,27:37.3044,50:43.6674,16:35.7448,40:40.3208,48:45.5612,39:37.3291,9:30.3879,52:43.1184,13:38.8765,43:38.9044,19:36.0741,59:50.5023,2:25.0208,20:40.2894,18:36.0587,22:37.0067,35:35.7986,57:45.1141,45:48.8365,38:42.4115,47:44.551,14:37.9955,53:42.1526}
{0:34.5495,31:40.3437,34:39.0436,4:32.0731,32:41.7042,5:29.5723,8:27.4287,6:27.9954,30:41.596,24:35.8273,29:41.2806,17:35.5775,51:43.5092,36:38.9061,12:32.1693,23:31.6138,58:49.3608,21:30.8571,11:30.8282,10:27.5935,15:32.0545,7:34.1569,28:38.5996,46:40.8449,33:41.522,55:40.1096,54:40.4141,25:36.4401,3:26.6453,49:45.3098,41:38.9198,1:33.309,26:31.5274,44:42.1042,37:33.8755,56:42.5406,42:42.9272,27:40.4926,50:43.7725,16:33.7914,40:35.2249,48:41.3049,39:42.2881,9:35.1869,52:38.2186,13:28.2873,43:36.4377,19:29.5334,59:50.3192,2:26.7687,20:30.0625,18:31.8131,22:33.6655,35:40.3685,57:43.3859,45:44.8891,38:45.5626,47:40.3755,14:34.7375,53:49.0177}
{0:25.936,31:39.882,34:46.352,4:25.7283,32:47.2155,5:38.0343,8:37.7284,6:32.5144,30:46.1184,24:41.8079,29:45.3471,17:37.4093,51:53.6677,36:44.7813,12:34.2708,23:45.1121,58:60.2715,21:39.5672,11:33.1018,10:37.8175,15:39.5554,7:28.1677,28:46.1963,46:46.7608,33:41.7716,55:52.2044,54:53.0302,25:39.3991,3:32.1247,49:47.9028,41:49.2,1:27.8769,26:46.4899,44:42.9752,37:42.1602,56:54.6278,42:48.8457,27:37.8993,50:47.9808,16:33.7153,40:46.4534,48:54.7223,39:41.7132,9:34.8157,52:49.3816,13:31.1627,43:51.6885,19:36.4312,59:51.2461,2:31.0652,20:42.0032,18:33.8995,22:44.4895,35:47.6125,57:51.193,45:51.4401,38:45.2296,47:44.6765,14:31.7993,53:49.8679}
{0:34.7577,31:18.942,34:12.7612,4:26.5402,32:11.7507,5:31.134,8:27.2156,6:25.0374,30:20.6236,24:19.6619,29:13.6421,17:21.009,51:2.77789,36:11.0575,12:19.5801,23:19.4585,58:-0.918282,21:20.0569,11:28.9633,10:20.7447,15:18.5355,7:20.5822,28:14.9623,46:2.75766,33:15.7699,55:-1.09838,54:4.64022,25:20.1131,3:25.8851,49:0.280929,41:15.3121,1:27.2329,26:13.5119,44:7.40863,37:11.0493,56:1.73428,42:4.75046,27:17.3118,50:5.60738,16:20.5305,40:10.9136,48:2.26104,39:12.1079,9:21.9477,52:8.24829,13:21.0691,43:11.4514,19:19.681,59:-5.11493,2:29.6962,20:17.8698,18:21.6225,22:15.6248,35:15.3504,57:-0.389051,45:1.79781,38:7.15418,47:12.27,14:25.2373,53:-1.94763}
{0:24.672,31:24.1253,34:20.2114,4:27.4694,32:27.6359,5:33.1785,8:33.2145,6:32.2803,30:28.3223,24:23.7292,29:28.814,17:30.9147,51:20.814,36:17.5369,12:23.3439,23:23.6492,58:17.1453,21:25.6017,11:26.5104,10:25.6637,15:25.6132,7:31.6116,28:23.2973,46:26.2839,33:19.4898,55:22.3346,54:17.7499,25:20.7066,3:34.4466,49:16.5657,41:26.2076,1:35.2611,26:26.2645,44:19.9031,37:24.9125,56:12.8159,42:16.2504,27:24.7386,50:14.734,16:27.9502,40:18.1659,48:22.1713,39:17.4289,9:30.1445,52:15.6153,13:22.746,43:18.3894,19:32.0994,59:16.9694,2:30.4858,20:28.0529,18:27.0545,22:25.8566,35:23.6849,57:20.5454,45:17.9491,38:23.8523,47:16.4354,14:23.7026,53:25.0509}
{0:25.5915,31:21.4495,34:19.4423,4:26.8874,32:21.0116,5:23.5727,8:24.2264,6:34.0696,30:23.8978,24:26.6097,29:17.0434,17:21.6923,51:17.2087,36:23.1524,12:27.0752,23:26.3557,58:9.62487,21:26.4841,11:22.7642,10:28.7364,15:28.1773,7:32.1339,28:25.2887,46:15.6387,33:26.4526,55:18.0558,54:19.0416,25:27.9231,3:25.658,49:18.4986,41:24.3354,1:29.951,26:22.3435,44:12.2025,37:16.6602,56:17.958,42:22.4654,27:18.341,50:10.7862,16:30.347,40:21.3702,48:17.3185,39:24.8439,9:32.835,52:15.5848,13:31.6947,43:17.0598,19:25.8688,59:17.5622,2:34.1883,20:20.7379,18:23.5198,22:25.9445,35:19.7804,57:15.1527,45:11.8315,38:23.1757,47:14.3779,14:23.0682,53:17.0231}
{0:27.6792,31:13.9003,34:10.7505,4:31.2456,32:19.4409,5:31.7891,8:32.8661,6:29.9296,30:22.3914,24:16.9069,29:24.682,17:23.878,51:12.6735,36:20.0395,12:25.396,23:20.8636,58:8.2564,21:23.5404,11:28.2636,10:20.9018,15:23.4474,7:27.1186,28:18.6867,46:9.15697,33:13.0709,55:3.85724,54:9.88177,25:21.5761,3:29.5401,49:11.6022,41:18.6756,1:33.5059,26:14.6181,44:16.5993,37:12.1304,56:9.13941,42:19.3187,27:14.948,50:13.9429,16:23.2294,40:15.3643,48:9.42373,39:10.6113,9:28.0952,52:15.4575,13:27.6674,43:17.4772,19:27.3443,59:12.6818,2:23.5936,20:24.2763,18:25.6356,22:23.8112,35:10.9764,57:6.37396,45:13.8059,38:18.0864,47:10.8103,14:23.3225,53:14.6864}
{0:30.6959,31:23.9212,34:27.9835,4:34.8351,32:26.1886,5:33.391,8:24.1163,6:33.1745,30:25.9576,24:21.0293,29:24.5885,17:31.7861,51:15.6725,36:20.9579,12:32.6791,23:29.9837,58:17.3203,21:26.2385,11:25.0529,10:22.7392,15:29.3805,7:32.8038,28:23.458,46:24.8499,33:27.1013,55:16.3705,54:21.8166,25:27.8689,3:33.1828,49:16.1014,41:22.9711,1:32.6666,26:18.415,44:14.9894,37:20.1101,56:12.1389,42:17.4637,27:19.4992,50:15.6811,16:23.5885,40:21.9504,48:23.4144,39:26.0014,9:25.1895,52:23.2877,13:31.1964,43:19.7913,19:30.2981,59:12.9403,2:34.2234,20:21.1997,18:24.2653,22:30.8587,35:21.7127,57:18.9965,45:14.9998,38:16.1708,47:20.7409,14:32.1598,53:17.7656}
{0:32.7024,31:22.4553,34:17.4518,4:28.1559,32:25.5328,5:26.2811,8:28.5879,6:26.8872,30:18.5226,24:20.1253,29:24.5176,17:31.7192,51:18.5537,36:18.3754,12:23.86,23:23.7635,58:10.6611,21:28.4345,11:31.6537,10:28.9522,15:26.2832,7:29.7385,28:20.7537,46:20.5897,33:19.7155,55:12.0342,54:18.4038,25:24.8483,3:24.2753,49:15.9688,41:20.9224,1:35.2191,26:27.4951,44:23.5325,37:18.6841,56:16.7271,42:15.342,27:24.8084,50:16.9737,16:25.8974,40:21.9886,48:23.6402,39:20.561,9:32.1145,52:18.1522,13:24.5025,43:21.9966,19:31.1534,59:12.7071,2:30.1425,20:27.6731,18:24.259,22:27.9522,35:17.8218,57:17.4144,45:19.1055,38:17.3308,47:15.386,14:26.1398,53:14.4306}
{0:34.7265,31:13.8646,34:15.6037,4:30.8269,32:19.3345,5:23.0724,8:23.5405,6:25.805,30:23.7398,24:23.837,29:21.1149,17:23.4292,51:11.7727,36:11.6338,12:28.8277,23:27.0924,58:5.87131,21:25.0618,11:23.334,10:20.3569,15:22.6943,7:22.7909,28:20.4101,46:9.75958,33:15.926,55:12.578,54:7.04646,25:16.8339,3:33.8817,49:10.2879,41:9.54987,1:28.3248,26:18.2734,44:8.85937,37:16.9222,56:12.1987,42:19.246,27:24.0576,50:13.4978,16:28.0091,40:18.612,48:16.3627,39:14.9357,9:30.8883,52:14.8751,13:21.3817,43:11.6953,19:26.4769,59:8.74893,2:30.3314,20:21.6918,18:21.3795,22:16.859,35:17.4703,57:11.4526,45:19.0428,38:10.8077,47:9.71633,14:22.6005,53:13.5205}
{0:30.3433,31:20.1521,34:22.9884,4:28.7193,32:18.9719,5:30.3064,8:25.7568,6:26.441,30:21.9615,24:24.3262,29:18.481,17:24.9236,51:19.2366,36:18.6096,12:29.376,23:22.1839,58:19.8272,21:19.1353,11:27.2333,10:27.6986,15:24.8205,7:29.9858,28:24.3507,46:16.3725,33:22.8251,55:19.8126,54:16.1155,25:21.2555,3:31.2943,49:15.4088,41:22.7311,1:33.0853,26:24.2222,44:20.8626,37:17.205,56:17.1546,42:18.0795,27:24.8388,50:16.4616,16:23.1368,40:21.9871,48:16.2527,39:22.9199,9:26.601,52:14.9375,13:31.3729,43:19.1683,19:29.0235,59:13.522,2:28.1304,20:28.7367,18:30.3621,22:19.3182,35:23.7988,57:19.612,45:19.8332,38:17.9684,47:19.7898,14:30.5352,53:12.6949}
{0:35.8083,31:16.749,34:23.4348,4:27.5799,32:24.3571,5:32.1966,8:30.3115,6:33.5506,30:21.4923,24:24.9736,29:25.7796,17:24.4731,51:18.2509,36:22.3185,12:31.2374,23:22.7842,58:7.77301,21:25.9389,11:25.5892,10:30.36,15:29.5807,7:25.853,28:25.9822,46:11.5379,33:19.3314,55:17.5233,54:19.4776,25:18.3744,3:33.2497,49:12.5637,41:24.062,1:31.0808,26:19.9579,44:12.2972,37:22.3168,56:8.62927,42:17.4021,27:16.5939,50:18.1073,16:25.5277,40:21.7804,48:11.3922,39:14.4429,9:29.2194,52:16.2639,13:30.4145,43:22.3031,19:19.1684,59:12.6472,2:24.7077,20:25.7127,18:30.356,22:29.0673,35:25.1986,57:16.7864,45:17.6043,38:16.4964,47:12.6297,14:26.2812,53:13.0736}
{0:29.8674,31:15.6819,34:12.7465,4:26.8339,32:17.8628,5:29.238,8:32.0613,6:28.4998,30:23.0304,24:24.4851,29:15.9212,17:18.4048,51:6.93985,36:14.8605,12:19.4951,23:23.5297,58:4.02874,21:18.1453,11:28.7289,10:23.0456,15:28.1297,7:25.822,28:15.2007,46:5.17979,33:19.7792,55:3.34116,54:1.43684,25:17.9577,3:27.4425,49:9.96112,41:7.53735,1:27.6615,26:23.1677,44:5.48363,37:11.23,56:7.06579,42:11.2326,27:21.4711,50:5.81293,16:26.8267,40:17.1193,48:13.8853,39:17.0092,9:23.053,52:13.2383,13:24.5965,43:8.13393,19:23.3849,59:0.398327,2:30.6146,20:25.6631,18:23.9112,22:17.4871,35:16.5934,57:11.3905,45:16.2809,38:13.9492,47:8.50708,14:29.4584,53:5.07533}
{0:33.9818,31:12.5136,34:10.6695,4:27.7519,32:10.2589,5:28.281,8:23.9497,6:22.6567,30:14.2532,24:19.1574,29:10.2174,17:17.2431,51:9.38928,36:13.5169,12:25.8071,23:16.465,58:6.88335,21:14.4566,11:24.6749,10:26.1655,15:19.4376,7:32.0964,28:20.2965,46:4.55301,33:16.0944,55:-2.05036,54:9.99592,25:12.3113,3:31.68,49:7.85468,41:8.12204,1:27.2921,26:15.3255,44:8.08824,37:7.01341,56:8.85716,42:14.4775,27:15.5311,50:6.20659,16:26.3171,40:13.1034,48:6.30391,39:7.55469,9:29.7642,52:6.85216,13:20.0795,43:13.5727,19:22.2086,59:-2.805,2:23.285,20:22.8913,18:26.9638,22:19.2371,35:10.3584,57:5.35315,45:5.95543,38:12.1457,47:5.66201,14:20.5547,53:-0.304955}
{0:29.3423,31:15.2941,34:15.2279,4:31.1505,32:14.9552,5:23.2352,8:24.863,6:24.2775,30:15.594,24:19.3471,29:13.186,17:18.0894,51:9.4418,36:18.2125,12:20.7931,23:15.0832,58:4.27351,21:17.908,11:23.5083,10:31.1555,15:25.3198,7:32.6208,28:13.1753,46:5.8477,33:11.3228,55:5.05686,54:5.16252,25:23.2372,3:23.8141,49:2.71047,41:16.8686,1:32.1281,26:18.9841,44:6.93668,37:8.84884,56:3.80988,42:9.20517,27:19.6937,50:7.16458,16:22.1926,40:7.3641,48:7.2852,39:9.84824,9:23.8676,52:6.34036,13:20.928,43:11.0579,19:17.9549,59:7.15775,2:24.4618,20:21.6848,18:20.2099,22:26.2025,35:17.2055,57:10.0843,45:10.479,38:14.6275,47:5.09316,14:24.8368,53:11.0354}
{0:32.9877,31:19.2741,34:19.5185,4:30.0797,32:18.7134,5:31.8821,8:20.6227,6:22.9249,30:19.9258,24:17.9033,29:21.2084,17:26.9977,51:10.6649,36:9.62068,12:25.9007,23:18.2095,58:5.20902,21:16.1136,11:29.3238,10:26.6401,15:25.4427,7:29.6492,28:23.5985,46:10.6869,33:18.5303,55:10.9723,54:9.93147,25:14.9117,3:30.8276,49:11.2703,41:18.2108,1:30.0992,26:20.8714,44:12.3627,37:17.0496,56:2.64308,42:16.02,27:22.8849,50:8.50924,16:18.3238,40:8.5157,48:12.0358,39:16.2489,9:20.459,52:4.96722,13:24.6276,43:9.53904,19:26.0177,59:1.26847,2:32.9225,20:24.8857,18:20.7065,22:21.0374,35:9.35252,57:0.184262,45:7.20407,38:15.5772,47:8.99224,14:22.6646,53:3.1022}
{0:33.0644,31:18.6724,34:16.4257,4:32.572,32:21.4485,5:33.4217,8:22.6195,6:25.1607,30:19.3264,24:22.3373,29:15.7526,17:23.7354,51:3.88566,36:17.2196,12:27.6368,23:17.0651,58:11.0845,21:19.3827,11:21.397,10:29.1564,15:18.7467,7:23.9926,28:22.1603,46:10.1395,33:18.4986,55:4.16727,54:13.8674,25:17.9964,3:28.2259,49:6.96299,41:8.19951,1:25.0789,26:15.5294,44:9.1447,37:12.6473,56:13.3514,42:9.22698,27:17.1947,50:14.4851,16:20.512,40:11.4457,48:14.2398,39:17.6955,9:29.4509,52:13.032,13:25.0776,43:8.2766,19:22.4663,59:12.0639,2:30.1502,20:21.6936,18:27.1869,22:24.6394,35:20.3164,57:6.92653,45:15.8898,38:12.9051,47:5.34174,14:21.5435,53:6.37428}
{0:35.8439,31:12.3809,34:21.2808,4:23.8216,32:14.0071,5:23.4497,8:28.103,6:23.362,30:20.9925,24:20.4047,29:13.3795,17:22.0418,51:7.23187,36:16.246,12:22.6226,23:15.2914,58:4.65211,21:25.5782,11:26.8349,10:23.134,15:21.9138,7:27.7327,28:18.5084,46:7.68784,33:17.5225,55:6.1934,54:6.82382,25:14.6934,3:33.2674,49:6.34594,41:10.5785,1:27.3117,26:22.3093,44:11.1296,37:16.5795,56:10.5061,42:9.44276,27:21.2724,50:15.0065,16:23.8,40:12.1504,48:6.05134,39:18.3923,9:20.6467,52:7.09977,13:29.0432,43:17.2701,19:19.0675,59:8.99862,2:25.8032,20:21.1747,18:20.8804,22:17.3265,35:20.3268,57:2.22212,45:9.2778,38:8.34548,47:12.3909,14:24.3884,53:11.6615}
{0:32.7365,31:15.3131,34:17.4916,4:31.9747,32:18.6867,5:22.7053,8:30.3256,6:24.9317,30:14.4091,24:14.8218,29:15.1355,17:22.6344,51:3.53005,36:9.70352,12:19.4807,23:16.0579,58:6.69141,21:21.1716,11:27.5357,10:27.3811,15:23.8835,7:23.7198,28:11.7872,46:1.29287,33:17.6959,55:2.8971,54:7.78926,25:17.689,3:28.3763,49:2.54455,41:4.98005,1:34.6519,26:20.97,44:7.32567,37:15.6554,56:-2.51614,42:12.5403,27:17.6723,50:1.08002,16:22.8247,40:15.3195,48:0.641311,39:9.60566,9:25.7845,52:3.80137,13:18.6926,43:7.28974,19:25.0422,59:5.52763,2:33.9412,20:21.6707,18:21.7956,22:15.0793,35:13.2318,57:2.29438,45:2.87491,38:14.0072,47:12.4691,14:20.5734,53:8.91888}
{0:26.2437,31:27.1776,34:22.2011,4:28.7497,32:26.3216,5:29.5727,8:26.017,6:24.273,30:24.3555,24:25.0909,29:22.6012,17:29.4661,51:20.2391,36:17.6454,12:30.0785,23:27.4374,58:17.885,21:24.9557,11:30.3554,10:28.8248,15:24.4216,7:27.766,28:20.6197,46:25.7498,33:23.844,55:14.4768,54:19.2025,25:20.3776,3:28.193,49:18.1749,41:22.8182,1:25.1013,26:26.9509,44:21.8022,37:19.5972,56:21.5785,42:19.6249,27:19.0917,50:16.4574,16:26.9319,40:21.7819,48:19.2185,39:23.4086,9:23.4226,52:17.7024,13:30.958,43:21.2513,19:30.4257,59:13.1226,2:24.1829,20:23.9935,18:20.4766,22:22.6837,35:23.7746,57:20.6726,45:16.0996,38:21.8211,47:22.9024,14:30.3753,53:13.9483}
{0:27.7578,31:20.5722,34:17.7039,4:32.2736,32:24.2868,5:32.3538,8:22.7785,6:25.1131,30:25.072,24:22.9873,29:24.1219,17:25.7328,51:16.5089,36:14.8075,12:28.6476,23:19.4361,58:14.6836,21:21.3032,11:24.4931,10:24.2513,15:23.732,7:26.7547,28:23.785,46:9.97505,33:24.4966,55:9.92844,54:14.0621,25:27.3676,3:25.174,49:10.4058,41:21.2833,1:33.8585,26:25.7905,44:12.4645,37:18.94,56:8.38661,42:21.9683,27:16.3252,50:15.0961,16:29.5826,40:23.2728,48:10.0542,39:18.7764,9:27.211,52:10.0287,13:26.5064,43:18.2793,19:28.0561,59:14.5034,2:29.8791,20:17.7958,18:27.46,22:20.0078,35:18.9709,57:17.4754,45:11.5044,38:21.8191,47:12.097,14:21.3078,53:9.82647}
{0:31.3393,31:12.9275,34:14.5112,4:27.4447,32:13.978,5:26.6155,8:21.2914,6:28.5819,30:24.2606,24:25.4132,29:23.574,17:18.5468,51:10.9503,36:19.1564,12:28.2141,23:22.9878,58:4.27543,21:19.0582,11:26.4118,10:21.6108,15:19.5351,7:24.8373,28:20.7637,46:13.1476,33:20.7242,55:7.60807,54:4.08611,25:23.3149,3:33.1679,49:14.2476,41:17.1622,1:30.1347,26:16.6201,44:8.0029,37:18.6254,56:9.02072,42:19.3945,27:25.4079,50:11.6091,16:20.4902,40:19.2929,48:6.36457,39:9.3563,9:22.4783,52:13.1308,13:19.5782,43:10.6337,19:22.4073,59:11.3065,2:28.3742,20:24.0209,18:25.0958,22:26.0449,35:21.8427,57:7.18348,45:8.89006,38:11.7767,47:15.3685,14:20.7727,53:3.79641}
{0:28.0273,31:18.1545,34:19.7291,4:32.0046,32:12.6631,5:30.9103,8:28.1745,6:27.6523,30:15.6295,24:14.3957,29:21.6122,17:21.2844,51:13.8701,36:13.345,12:25.2999,23:24.7178,58:3.00735,21:18.4167,11:29.9441,10:26.4159,15:22.9908,7:32.2092,28:22.8164,46:14.7474,33:14.7327,55:12.3847,54:10.5016,25:25.0792,3:32.9759,49:3.82848,41:16.4601,1:33.8121,26:22.0566,44:17.8633,37:18.2896,56:7.22965,42:10.0944,27:19.1291,50:4.81263,16:28.1635,40:10.545,48:13.6722,39:15.353,9:21.0762,52:6.79046,13:23.878,43:17.1222,19:17.3955,59:3.40909,2:23.8061,20:15.812,18:26.4871,22:22.1649,35:10.6772,57:1.21165,45:9.03934,38:17.4924,47:4.80088,14:22.3611,53:7.63286}
{0:35.0122,31:17.469,34:15.0572,4:27.2509,32:20.816,5:32.2709,8:30.84,6:28.2636,30:17.3451,24:16.8183,29:20.6392,17:21.7475,51:9.08363,36:17.9427,12:28.7845,23:23.7391,58:1.74031,21:24.7024,11:29.6183,10:21.547,15:19.7929,7:29.2112,28:21.9152,46:9.98182,33:17.5159,55:-0.341912,54:10.8725,25:22.2819,3:28.2444,49:12.0552,41:17.4044,1:34.2871,26:19.9793,44:12.4367,37:8.0665,56:2.67715,42:11.9675,27:21.2768,50:1.88855,16:25.2672,40:15.6581,48:4.90826,39:14.2791,9:27.9931,52:3.1833,13:29.9032,43:14.0101,19:21.3586,59:-1.47968,2:26.4959,20:25.4363,18:24.3986,22:16.7196,35:13.2495,57:3.55312,45:11.3352,38:8.41074,47:11.5551,14:18.347,53:5.54762}
{0:30.6243,31:22.3697,34:15.6439,4:30.6232,32:21.5177,5:29.8039,8:25.9614,6:23.4898,30:20.3501,24:21.6858,29:22.8183,17:26.151,51:11.5411,36:16.4472,12:21.7043,23:16.6942,58:5.10432,21:17.0833,11:29.2401,10:26.2418,15:24.8534,7:25.064,28:12.8605,46:12.259,33:20.1846,55:11.8882,54:3.72351,25:14.2844,3:29.8764,49:6.6018,41:11.6054,1:24.6374,26:13.3046,44:14.2697,37:16.756,56:6.18997,42:9.1255,27:17.9498,50:9.19759,16:23.4604,40:12.0994,48:6.41679,39:13.9279,9:28.4838,52:2.55921,13:23.9336,43:12.8718,19:25.1417,59:-0.430122,2:23.7674,20:19.3954,18:23.7717,22:26.6493,35:10.1675,57:10.4037,45:6.55363,38:19.3095,47:14.1292,14:21.0399,53:13.1549}
{0:25.2456,31:20.7141,34:8.20463,4:33.6054,32:10.5622,5:31.9876,8:24.0974,6:32.8357,30:20.2736,24:23.8052,29:16.6652,17:20.0189,51:9.34476,36:15.3489,12:25.2765,23:24.3789,58:1.74869,21:21.5704,11:26.4496,10:31.0011,15:24.1868,7:21.4671,28:19.1576,46:13.7883,33:16.5425,55:6.12574,54:5.41168,25:13.1736,3:30.0714,49:9.59666,41:11.3942,1:25.4004,26:16.2371,44:10.6599,37:13.087,56:-0.0451929,42:5.19715,27:14.3237,50:8.69533,16:23.3321,40:15.3078,48:5.89931,39:8.84417,9:31.6531,52:0.0781684,13:19.7728,43:4.02664,19:22.3331,59:2.38527,2:31.3194,20:23.6274,18:21.7469,22:25.2817,35:15.2521,57:1.58692,45:5.35379,38:8.8763,47:10.2165,14:19.1767,53:5.91678}
{0:34.707,31:24.6017,34:22.2864,4:31.932,32:26.6144,5:34.3876,8:28.4438,6:25.907,30:19.2821,24:26.2641,29:28.4127,17:30.9075,51:23.2585,36:25.5987,12:33.0583,23:21.3106,58:16.57,21:23.0365,11:24.762,10:26.0558,15:22.3825,7:28.4214,28:28.99,46:20.1188,33:19.5014,55:16.0857,54:18.0584,25:20.6225,3:35.0574,49:15.6732,41:25.4636,1:24.5857,26:27.4061,44:21.0655,37:20.6435,56:17.895,42:17.051,27:25.4044,50:13.3234,16:31.1286,40:18.4112,48:15.3615,39:26.9589,9:25.2394,52:17.3059,13:23.7908,43:17.1733,19:29.8885,59:18.4333,2:34.9487,20:22.6976,18:28.3799,22:21.3532,35:18.9763,57:20.662,45:21.7191,38:16.2776,47:24.4549,14:30.7995,53:14.8466}
{0:29.3563,31:14.5666,34:21.3005,4:25.8835,32:21.0823,5:32.0768,8:22.3445,6:22.9042,30:16.5545,24:16.5949,29:22.0799,17:28.0351,51:6.29821,36:18.612,12:21.9685,23:22.6454,58:3.32389,21:26.8402,11:29.2022,10:29.722,15:26.2446,7:24.8517,28:22.1216,46:13.1019,33:15.6462,55:9.07585,54:11.3197,25:22.6252,3:34.6341,49:17.4867,41:16.7574,1:26.7933,26:23.8802,44:18.8316,37:12.2266,56:12.6079,42:19.6704,27:19.9133,50:15.6856,16:23.3496,40:19.5694,48:15.3974,39:19.1157,9:30.1753,52:5.54926,13:23.865,43:15.7692,19:23.2727,59:7.31245,2:25.5746,20:23.2027,18:26.4431,22:16.1719,35:20.2431,57:14.7806,45:12.6974,38:16.7062,47:14.9506,14:30.3951,53:8.29992}
{0:29.8248,31:14.7572,34:20.3129,4:33.8473,32:13.3087,5:28.7473,8:24.1203,6:32.4017,30:17.579,24:13.9449,29:19.6983,17:21.0832,51:8.06765,36:10.5817,12:30.4824,23:15.6338,58:0.727669,21:18.2971,11:21.5275,10:28.9913,15:29.0543,7:21.9076,28:22.7834,46:5.18586,33:16.4542,55:9.01282,54:6.76921,25:17.9243,3:25.5251,49:13.2721,41:6.40702,1:29.4065,26:17.6249,44:10.3235,37:17.1728,56:7.58203,42:15.9175,27:19.7382,50:4.3559,16:22.8082,40:5.97417,48:9.72118,39:16.1239,9:21.5152,52:12.3258,13:22.8566,43:13.2782,19:21.422,59:1.25526,2:30.905,20:16.2944,18:16.4936,22:18.7847,35:13.0686,57:-0.182931,45:8.92536,38:17.1261,47:13.0707,14:28.262,53:7.31648}
{0:31.9397,31:20.0828,34:20.2555,4:31.8701,32:22.489,5:23.5388,8:33.21,6:28.7568,30:15.6268,24:18.7708,29:19.6988,17:25.7755,51:17.2018,36:20.2349,12:23.2601,23:21.9897,58:8.43656,21:25.9774,11:28.5908,10:25.6048,15:21.2353,7:26.2606,28:25.3457,46:18.8601,33:23.2607,55:14.6777,54:15.7355,25:19.7411,3:30.2105,49:18.5734,41:11.1547,1:35.034,26:18.9782,44:12.2091,37:12.082,56:15.8328,42:20.6449,27:23.0857,50:15.7037,16:23.7193,40:18.8408,48:18.311,39:22.3164,9:26.2392,52:10.6456,13:28.5012,43:16.7026,19:24.2706,59:16.156,2:35.2023,20:18.194,18:22.2607,22:26.3191,35:18.3583,57:14.5117,45:19.8815,38:22.5465,47:11.1097,14:29.2993,53:7.11417}
{0:32.3704,31:20.6535,34:15.3026,4:25.6656,32:20.4057,5:31.3995,8:30.8628,6:33.4776,30:20.0145,24:24.3109,29:25.0141,17:18.0901,51:17.1671,36:18.401,12:28.0832,23:27.1454,58:12.8766,21:22.5818,11:28.0413,10:29.2909,15:20.6586,7:30.815,28:21.7597,46:17.91,33:14.5211,55:14.1029,54:12.512,25:17.3529,3:24.6215,49:12.2073,41:18.5258,1:28.0604,26:17.9614,44:17.7262,37:13.2104,56:8.33542,42:19.4039,27:18.6732,50:15.61,16:19.2049,40:15.3695,48:18.2601,39:10.98,9:28.6658,52:9.0222,13:27.022,43:18.8454,19:22.2534,59:11.4405,2:30.5322,20:19.5037,18:19.5322,22:26.2295,35:11.8945,57:9.14153,45:13.6505,38:18.8869,47:18.0602,14:27.5586,53:15.0887}
{0:33.5562,31:18.3001,34:21.9639,4:32.5647,32:24.013,5:30.126,8:25.2542,6:33.7498,30:18.0357,24:20.2206,29:21.7174,17:27.8976,51:21.2349,36:15.7532,12:24.3725,23:23.8935,58:11.8889,21:21.7529,11:23.5981,10:26.097,15:25.2359,7:33.9503,28:17.8513,46:17.3588,33:17.7622,55:15.3275,54:11.7533,25:20.5878,3:24.6181,49:16.7526,41:24.9884,1:25.8012,26:23.8678,44:12.4428,37:23.0135,56:13.7422,42:12.893,27:24.4727,50:18.1517,16:28.3239,40:20.0629,48:21.6531,39:23.604,9:25.3717,52:16.8587,13:30.2224,43:13.2114,19:23.0349,59:9.24712,2:28.2825,20:23.1902,18:19.6524,22:24.437,35:23.7692,57:11.9032,45:13.4769,38:18.0986,47:12.3925,14:25.1639,53:20.4865}
{0:28.8965,31:19.206,34:17.336,4:34.3288,32:18.2687,5:31.024,8:23.7058,6:26.6568,30:20.0975,24:20.331,29:25.6739,17:24.4463,51:15.9844,36:18.687,12:30.5163,23:28.3719,58:17.1802,21:23.9193,11:22.2004,10:23.9464,15:28.1295,7:22.7226,28:17.1252,46:20.4981,33:19.9317,55:10.9641,54:18.2235,25:19.7069,3:23.6623,49:20.6594,41:21.7115,1:34.7054,26:24.2581,44:19.5646,37:24.1268,56:12.5492,42:21.3717,27:23.8154,50:12.3483,16:28.9104,40:20.8036,48:10.8012,39:18.3339,9:21.4891,52:12.7761,13:31.8234,43:16.5595,19:18.497,59:14.6811,2:34.8814,20:22.7429,18:28.4826,22:22.9993,35:20.2016,57:9.95019,45:22.425,38:22.0187,47:10.9267,14:22.2571,53:10.5385}
{0:33.7603,31:19.748,34:20.4589,4:28.7756,32:20.4339,5:29.6775,8:22.4859,6:26.8554,30:23.6027,24:27.7824,29:23.1091,17:22.4857,51:21.7127,36:24.0458,12:30.9502,23:19.4466,58:16.3222,21:25.7293,11:26.7977,10:22.9522,15:23.6087,7:28.2685,28:26.2349,46:16.1285,33:24.0073,55:11.5866,54:21.6701,25:29.3475,3:23.7675,49:19.0952,41:18.5151,1:28.0251,26:21.081,44:15.9654,37:23.9507,56:11.8634,42:20.8686,27:23.9031,50:24.1797,16:24.7045,40:20.5921,48:14.5413,39:23.25,9:31.5602,52:15.5258,13:29.1207,43:22.4542,19:25.4036,59:10.7228,2:27.9612,20:26.4462,18:27.8181,22:24.3133,35:24.8405,57:17.7309,45:19.3589,38:15.411,47:23.699,14:25.3802,53:15.7883}
{0:29.4808,31:19.1441,34:23.8954,4:22.9776,32:15.5032,5:25.6202,8:22.8124,6:32.2924,30:22.6311,24:25.5445,29:18.9265,17:26.041,51:7.29751,36:15.4786,12:23.0401,23:16.7906,58:10.2047,21:21.4688,11:25.1078,10:25.5443,15:22.1645,7:22.5431,28:22.8351,46:15.1702,33:13.8901,55:5.73828,54:13.889,25:20.5015,3:25.4192,49:16.1378,41:11.4961,1:32.4439,26:20.9426,44:15.1227,37:22.6993,56:13.3332,42:19.3962,27:20.6423,50:17.8414,16:23.4208,40:19.6895,48:9.66617,39:19.0651,9:26.8368,52:9.38928,13:23.736,43:15.853,19:28.7098,59:5.61415,2:27.3896,20:18.5497,18:27.1112,22:17.3593,35:23.1442,57:7.52498,45:19.9602,38:12.0673,47:15.1424,14:20.4873,53:8.21904}
{0:29.9618,31:18.7923,34:22.0906,4:23.0114,32:26.6018,5:29.1034,8:23.8893,6:30.6008,30:25.8331,24:25.1661,29:27.359,17:23.4946,51:19.7561,36:14.7332,12:29.7056,23:22.1294,58:10.8602,21:19.4522,11:23.5008,10:31.7226,15:21.1593,7:26.7963,28:26.4748,46:22.4943,33:18.4685,55:17.6596,54:19.9365,25:21.1299,3:32.6069,49:20.2382,41:15.6345,1:32.7794,26:24.5104,44:17.1214,37:15.2964,56:17.7954,42:23.27,27:20.3758,50:20.1158,16:28.4852,40:19.2293,48:21.5856,39:13.4913,9:27.4259,52:13.8603,13:31.0183,43:16.3324,19:19.7109,59:12.03,2:33.145,20:18.8901,18:29.5371,22:24.4172,35:21.604,57:18.2822,45:14.553,38:15.6653,47:10.4046,14:24.8427,53:19.0854}
{0:29.1844,31:19.346,34:24.7425,4:24.8519,32:20.0546,5:28.6605,8:31.9263,6:33.0868,30:21.0681,24:24.7316,29:25.3692,17:20.9543,51:14.8305,36:16.5274,12:22.1718,23:20.7717,58:13.4557,21:26.4496,11:30.0217,10:24.8155,15:31.8728,7:28.4317,28:24.4036,46:23.4739,33:23.3193,55:11.6059,54:22.4989,25:25.5066,3:24.9336,49:13.2132,41:16.4438,1:35.6161,26:29.3413,44:21.979,37:25.2545,56:12.9306,42:24.9447,27:26.8638,50:22.6686,16:27.2996,40:16.7998,48:24.9277,39:23.6766,9:22.1199,52:17.4526,13:27.312,43:14.8019,19:28.7867,59:14.2946,2:32.843,20:30.1492,18:22.6605,22:29.461,35:16.3943,57:15.5053,45:17.191,38:15.5315,47:14.1644,14:31.8054,53:13.7982}
{0:30.1105,31:15.2702,34:12.385,4:26.5827,32:19.4859,5:24.1646,8:24.7,6:29.8829,30:15.0326,24:23.5854,29:12.8671,17:25.7269,51:4.67512,36:16.961,12:23.5011,23:24.065,58:8.99777,21:25.832,11:27.8002,10:27.4913,15:19.735,7:24.111,28:22.3377,46:12.8549,33:14.574,55:8.33011,54:10.6168,25:17.0985,3:31.1439,49:12.9518,41:6.76408,1:33.9296,26:13.4065,44:6.74062,37:11.8272,56:0.709957,42:13.3425,27:19.7763,50:6.79726,16:18.5279,40:18.1886,48:3.88041,39:9.37277,9:22.4949,52:6.83732,13:28.8974,43:14.1838,19:22.8388,59:6.13934,2:33.9495,20:26.4012,18:19.6087,22:17.6603,35:16.431,57:0.224141,45:7.4053,38:8.32361,47:4.07575,14:29.5533,53:7.93936}
{0:26.4975,31:23.8546,34:15.1497,4:34.2562,32:25.043,5:32.8993,8:25.1867,6:32.8097,30:23.1594,24:17.1494,29:19.3554,17:25.9742,51:11.0336,36:22.9859,12:29.9048,23:17.3583,58:13.3278,21:24.8205,11:29.5075,10:28.8747,15:26.2808,7:30.7952,28:23.087,46:13.3459,33:22.6021,55:14.3552,54:7.50362,25:25.3483,3:31.1094,49:15.593,41:13.9414,1:31.3143,26:26.9839,44:11.0562,37:18.8073,56:11.5728,42:18.1042,27:22.5292,50:18.8025,16:19.8222,40:14.0111,48:12.5667,39:12.3726,9:21.5465,52:18.2495,13:25.3447,43:19.8838,19:22.3175,59:5.21633,2:28.5503,20:28.001,18:30.1459,22:24.497,35:17.1482,57:13.8364,45:11.6662,38:22.7072,47:12.9071,14:23.9074,53:13.609}
{0:34.9901,31:14.6756,34:10.1934,4:25.8395,32:10.7908,5:24.7419,8:28.167,6:25.0078,30:13.0587,24:14.8987,29:13.9852,17:19.7425,51:6.09379,36:15.1098,12:23.3165,23:22.1534,58:0.163732,21:14.6772,11:22.7921,10:20.0614,15:19.0198,7:22.7542,28:12.6077,46:5.61408,33:13.8549,55:5.91872,54:0.656809,25:21.5083,3:33.7057,49:8.83944,41:7.59694,1:23.512,26:11.2952,44:3.56604,37:12.9281,56:-2.95034,42:12.521,27:11.1076,50:0.575556,16:20.6995,40:15.5663,48:12.415,39:9.30997,9:19.8701,52:10.1494,13:22.7092,43:13.2364,19:16.3289,59:7.02452,2:31.3224,20:23.3913,18:25.0988,22:17.6601,35:15.9551,57:5.67347,45:9.31379,38:6.89805,47:11.2366,14:23.2982,53:-1.57518}
{0:32.4196,31:21.6867,34:19.9121,4:22.4996,32:18.6978,5:25.7333,8:24.1323,6:21.9773,30:18.3392,24:20.261,29:20.6954,17:27.9805,51:5.02664,36:9.81596,12:26.1198,23:14.1825,58:6.21406,21:24.6833,11:24.5643,10:25.2632,15:25.8324,7:25.1915,28:21.0627,46:5.56316,33:20.5599,55:7.88918,54:0.826886,25:22.1873,3:27.6558,49:4.24314,41:9.84385,1:30.0036,26:19.4518,44:11.8497,37:13.6251,56:8.8615,42:6.3405,27:22.1978,50:8.74702,16:17.7175,40:16.8982,48:14.0913,39:12.4766,9:25.9592,52:4.04425,13:27.4542,43:14.4266,19:20.1064,59:8.46026,2:26.494,20:23.7642,18:20.427,22:24.3027,35:9.77234,57:9.36671,45:9.30006,38:13.0158,47:10.8903,14:18.1205,53:5.49359}
{0:34.786,31:23.4019,34:25.8871,4:33.3359,32:26.4171,5:28.2087,8:32.8825,6:25.1472,30:24.6046,24:27.0955,29:25.439,17:25.9565,51:20.2825,36:24.3138,12:28.7224,23:18.311,58:8.75208,21:27.7809,11:21.3097,10:24.1657,15:28.0259,7:24.6253,28:24.3503,46:11.0344,33:17.2402,55:16.8164,54:18.0926,25:22.2856,3:32.1062,49:17.2288,41:18.5422,1:27.013,26:22.9348,44:20.1629,37:20.1281,56:17.1094,42:20.95,27:17.1293,50:14.9414,16:28.1055,40:17.871,48:13.3603,39:17.1557,9:30.3093,52:12.8106,13:23.5511,43:21.0682,19:26.3919,59:7.73077,2:34.668,20:29.1434,18:20.7353,22:28.671,35:17.2257,57:10.8251,45:19.3296,38:15.0993,47:11.3509,14:30.3505,53:8.69403}
{0:30.1675,31:22.8741,34:14.353,4:33.7987,32:19.6249,5:25.2824,8:26.1213,6:24.7392,30:22.0946,24:22.3964,29:24.7581,17:18.8304,51:5.37753,36:19.5086,12:27.681,23:24.3079,58:9.51936,21:24.0473,11:27.4274,10:27.1461,15:29.6143,7:30.3701,28:23.7799,46:14.5737,33:21.8965,55:9.58674,54:9.20269,25:14.8849,3:23.2907,49:7.57473,41:9.70286,1:31.1435,26:21.0967,44:18.361,37:19.571,56:9.24039,42:13.8799,27:21.4341,50:12.3841,16:24.8025,40:17.0939,48:12.1445,39:12.2162,9:29.6477,52:8.19001,13:19.5306,43:14.4369,19:21.9436,59:5.26947,2:24.0182,20:25.5092,18:27.0575,22:25.234,35:18.7625,57:12.8854,45:18.0462,38:18.5593,47:14.9211,14:24.6628,53:12.4894}
{0:27.2785,31:17.129,34:17.4014,4:26.3835,32:18.4058,5:33.4888,8:27.1656,6:23.1674,30:19.0988,24:21.9361,29:23.3351,17:20.063,51:9.10485,36:16.111,12:29.5044,23:25.6267,58:13.9215,21:28.917,11:26.7477,10:25.1088,15:19.3808,7:22.752,28:16.3326,46:15.8273,33:16.1166,55:13.5713,54:16.4595,25:21.726,3:30.55,49:9.56392,41:13.2367,1:27.2675,26:18.5811,44:20.2398,37:18.7729,56:15.978,42:14.5454,27:17.9102,50:18.9331,16:20.9675,40:14.078,48:15.6576,39:17.0488,9:22.7127,52:19.2225,13:26.1869,43:19.5359,19:27.0611,59:14.1991,2:25.767,20:27.0354,18:27.1739,22:25.832,35:19.207,57:14.6104,45:10.3568,38:15.7,47:19.9706,14:19.6636,53:10.8289}
{0:30.7172,31:10.1933,34:12.3245,4:25.0852,32:15.2732,5:23.5999,8:23.4837,6:30.7385,30:16.4131,24:20.0812,29:18.2831,17:17.7759,51:-1.11585,36:12.3869,12:27.9066,23:13.3333,58:0.526948,21:14.9252,11:27.6243,10:22.6377,15:24.4387,7:25.8833,28:13.2557,46:13.0186,33:17.7654,55:7.39449,54:5.56224,25:12.6184,3:27.2013,49:9.20961,41:3.63517,1:26.5057,26:14.4815,44:6.18535,37:15.0145,56:-3.78936,42:5.57318,27:15.2657,50:4.80464,16:16.4883,40:6.61313,48:4.37425,39:15.2727,9:29.8056,52:2.70379,13:22.3467,43:11.7963,19:22.5623,59:5.25399,2:32.4956,20:25.194,18:19.8928,22:22.6297,35:11.5208,57:-1.56456,45:3.04618,38:11.9966,47:1.34743,14:24.6368,53:4.70496}
{0:29.4246,31:15.6363,34:18.9392,4:31.7695,32:12.9935,5:29.3782,8:25.6647,6:26.5268,30:22.3938,24:22.3505,29:20.8701,17:19.6961,51:6.75225,36:14.1372,12:27.251,23:20.5642,58:13.2374,21:16.6932,11:20.8275,10:21.4073,15:21.6243,7:25.5978,28:18.9084,46:11.445,33:16.2217,55:7.42377,54:4.75806,25:16.6373,3:23.247,49:6.30375,41:13.5661,1:35.1143,26:22.0487,44:11.5679,37:19.3202,56:10.5746,42:20.001,27:25.7863,50:16.0248,16:19.2697,40:13.5238,48:7.82471,39:13.8917,9:25.4169,52:7.74784,13:27.742,43:13.5541,19:24.0797,59:2.62042,2:29.7317,20:26.0723,18:20.4626,22:16.3915,35:21.353,57:3.46747,45:12.2903,38:12.6409,47:11.6309,14:28.5555,53:5.29304}
{0:29.1069,31:14.6471,34:23.13,4:34.1943,32:17.9563,5:24.5164,8:25.2014,6:31.7765,30:17.6493,24:21.8856,29:20.83,17:27.4401,51:8.26787,36:16.1532,12:21.928,23:26.3663,58:3.44381,21:27.1731,11:22.5503,10:25.5775,15:21.2157,7:25.0077,28:22.775,46:17.5617,33:17.0681,55:5.95287,54:10.6641,25:18.1534,3:34.0267,49:11.1697,41:13.73,1:29.9234,26:21.3278,44:7.85723,37:16.4012,56:10.1393,42:18.0671,27:16.3033,50:6.118,16:28.9452,40:20.4702,48:16.7119,39:14.4259,9:28.5866,52:16.5896,13:28.4034,43:16.2146,19:18.6654,59:4.06128,2:26.991,20:28.4578,18:27.878,22:17.4041,35:17.865,57:13.5425,45:10.3101,38:16.3658,47:9.77573,14:26.8873,53:14.3696}
{0:27.6781,31:16.0473,34:17.3434,4:32.2104,32:23.5418,5:31.8247,8:23.9869,6:30.3759,30:20.5436,24:22.8051,29:26.6726,17:31.0254,51:21.2489,36:21.9434,12:21.3437,23:23.3872,58:13.9088,21:25.2664,11:21.7121,10:31.1519,15:26.2962,7:22.3033,28:26.9051,46:21.8427,33:26.2103,55:14.4657,54:8.67804,25:18.4454,3:28.8206,49:18.1556,41:15.3415,1:25.0403,26:18.5848,44:12.9077,37:19.4143,56:8.83946,42:17.6208,27:18.23,50:14.8296,16:25.5756,40:15.9758,48:11.1602,39:17.8167,9:25.0789,52:20.6554,13:31.1664,43:15.6447,19:30.5336,59:12.2599,2:28.9147,20:23.8053,18:30.1459,22:26.7113,35:15.1044,57:12.1524,45:17.1468,38:14.0723,47:11.0515,14:26.9202,53:14.5019}
{0:29.5065,31:25.9369,34:14.6512,4:29.3582,32:19.6161,5:23.4112,8:24.5636,6:23.0838,30:21.25,24:27.5595,29:23.7881,17:29.2515,51:11.6877,36:16.1023,12:23.9446,23:28.6846,58:16.1216,21:24.6302,11:23.6342,10:31.6794,15:31.5416,7:24.4841,28:22.5894,46:19.0299,33:18.1936,55:12.1593,54:15.351,25:24.1915,3:24.2563,49:18.2081,41:23.1756,1:24.4107,26:23.3514,44:12.3265,37:14.2972,56:11.7764,42:14.675,27:19.5615,50:15.9421,16:26.7205,40:16.9203,48:16.8761,39:16.6322,9:30.6761,52:14.7295,13:30.4853,43:22.5097,19:28.8038,59:8.96022,2:25.1463,20:23.2795,18:21.9583,22:24.634,35:14.6432,57:11.2275,45:13.3607,38:15.1364,47:22.2084,14:23.7399,53:18.7073}
{0:31.3874,31:20.9605,34:18.7199,4:28.9308,32:10.7694,5:31.6563,8:21.5862,6:29.1852,30:13.2258,24:18.2518,29:18.6397,17:18.0642,51:9.21545,36:12.8076,12:28.4549,23:24.5236,58:5.19589,21:22.9359,11:25.5803,10:30.272,15:18.8299,7:22.0846,28:23.3512,46:14.4063,33:18.3939,55:5.42812,54:11.6878,25:22.4267,3:30.9179,49:6.70927,41:17.8673,1:29.8134,26:24.157,44:15.9737,37:9.21099,56:0.228974,42:13.9648,27:19.6982,50:3.65616,16:21.2142,40:13.7423,48:13.2227,39:8.86791,9:22.4088,52:3.51762,13:27.8783,43:13.2912,19:26.9298,59:8.28562,2:29.2049,20:26.415,18:19.8683,22:24.5127,35:15.5166,57:11.5352,45:9.71847,38:11.31,47:11.148,14:24.5905,53:1.78834}
{0:27.3171,31:17.6463,34:11.1148,4:25.9161,32:17.2359,5:25.5463,8:32.9207,6:27.6862,30:15.5825,24:21.7694,29:20.8755,17:27.8805,51:5.65143,36:16.3423,12:23.2447,23:17.4805,58:4.05378,21:20.6403,11:27.9245,10:20.626,15:28.3974,7:26.2967,28:15.1487,46:17.2137,33:17.6597,55:14.5487,54:12.2788,25:26.1625,3:26.4385,49:6.33174,41:15.7735,1:26.0356,26:22.8858,44:9.32203,37:16.309,56:10.8696,42:11.4885,27:16.2984,50:16.181,16:24.0955,40:11.12,48:17.7507,39:16.2937,9:31.0549,52:16.2495,13:23.323,43:9.73838,19:26.2752,59:2.38998,2:28.7766,20:16.5784,18:24.5356,22:24.234,35:15.3008,57:14.1952,45:13.3652,38:13.6346,47:10.7922,14:29.9206,53:5.20833}
{0:35.162,31:26.818,34:19.9912,4:32.632,32:25.7449,5:30.9281,8:32.7916,6:33.9576,30:21.1691,24:19.7325,29:28.1015,17:23.2952,51:17.5972,36:17.1933,12:23.3024,23:19.2621,58:12.9923,21:20.7421,11:31.9689,10:32.5142,15:25.5989,7:30.0052,28:21.1185,46:22.6783,33:24.9337,55:11.4197,54:14.0204,25:22.3661,3:26.7779,49:14.2876,41:17.6466,1:30.7832,26:24.4152,44:21.3594,37:20.8085,56:12.6292,42:20.48,27:21.4322,50:14.4733,16:28.6478,40:22.5729,48:15.6654,39:15.0188,9:23.6,52:12.6412,13:22.7402,43:23.2969,19:23.3326,59:21.9833,2:33.8476,20:23.9057,18:25.4243,22:21.0208,35:22.0851,57:17.6542,45:21.6109,38:18.6962,47:13.4625,14:26.8313,53:19.0286}
{0:34.5693,31:15.7013,34:15.2135,4:32.6606,32:20.4094,5:28.3769,8:22.0547,6:26.3608,30:20.1095,24:20.3677,29:16.5861,17:26.164,51:10.1656,36:14.6588,12:23.4399,23:24.5926,58:2.37311,21:24.5905,11:20.1346,10:31.7172,15:23.4599,7:21.5263,28:20.9124,46:14.6655,33:17.4785,55:10.8072,54:11.6835,25:13.7195,3:29.178,49:13.9323,41:18.0138,1:29.6041,26:22.59,44:9.91233,37:12.1976,56:10.1862,42:17.7375,27:23.2604,50:6.94002,16:25.8934,40:9.63351,48:14.2794,39:12.5412,9:25.292,52:14.3577,13:28.1619,43:8.35061,19:21.8685,59:9.6124,2:26.5708,20:25.9376,18:28.5439,22:26.3719,35:15.2093,57:12.1438,45:7.58997,38:16.743,47:11.1449,14:20.1477,53:9.651}
{0:31.2754,31:16.9827,34:16.914,4:27.4222,32:22.1023,5:26.7591,8:28.7843,6:31.4696,30:21.7781,24:21.1069,29:18.4565,17:19.7228,51:19.2119,36:16.6925,12:21.512,23:23.118,58:16.2775,21:18.1501,11:32.8406,10:27.3744,15:24.702,7:25.6416,28:19.0399,46:17.958,33:15.6151,55:13.9545,54:19.9305,25:25.2041,3:25.4472,49:18.7534,41:16.8796,1:24.3056,26:22.0957,44:21.519,37:14.1514,56:14.8293,42:13.5219,27:17.6109,50:9.79589,16:23.6842,40:19.1724,48:11.3615,39:17.7732,9:30.4762,52:12.6303,13:23.3321,43:19.5345,19:24.4763,59:19.1798,2:34.0683,20:19.7264,18:20.8668,22:26.8217,35:17.8799,57:15.2943,45:16.0061,38:18.737,47:11.2215,14:20.6309,53:11.1513}
{0:33.728,31:17.1549,34:17.8326,4:27.7736,32:23.2617,5:31.4229,8:29.0038,6:24.8724,30:21.4713,24:26.3401,29:24.5344,17:25.0719,51:7.75865,36:13.58,12:31.1557,23:24.2712,58:3.8501,21:18.1065,11:25.4698,10:21.4308,15:27.8193,7:24.3725,28:16.9154,46:16.4339,33:17.1482,55:9.53712,54:4.85883,25:15.7692,3:25.8777,49:16.1975,41:19.6604,1:27.3126,26:19.564,44:12.6043,37:14.3463,56:7.9635,42:19.9944,27:16.4447,50:9.81884,16:28.2283,40:12.4773,48:7.21432,39:10.5373,9:27.291,52:10.1473,13:23.1583,43:17.3596,19:21.0338,59:5.49112,2:28.524,20:19.2369,18:17.5534,22:24.9617,35:17.8876,57:3.26594,45:15.2604,38:20.0087,47:8.4233,14:19.0979,53:5.94111}
{0:34.104,31:21.936,34:13.8726,4:24.3285,32:16.0026,5:23.7906,8:22.3596,6:30.8649,30:10.588,24:23.7238,29:17.7513,17:21.4821,51:3.31001,36:14.3304,12:22.7556,23:24.4625,58:3.29112,21:19.8958,11:20.099,10:21.3985,15:19.5139,7:23.5441,28:18.1209,46:5.97461,33:17.6872,55:5.11616,54:1.62818,25:16.4805,3:30.2931,49:3.3516,41:9.14047,1:27.7979,26:15.9085,44:10.522,37:10.5126,56:6.58775,42:10.4531,27:21.0905,50:7.83328,16:17.8072,40:15.7734,48:13.1155,39:12.992,9:28.7618,52:7.26069,13:29.2901,43:7.48238,19:23.7914,59:-0.0831256,2:32.392,20:15.1197,18:26.7232,22:14.5621,35:19.6396,57:6.94629,45:4.98042,38:9.5587,47:5.52784,14:19.1851,53:10.0355}
{0:24.6279,31:24.0104,34:21.4215,4:28.1412,32:16.9793,5:32.0077,8:22.9473,6:34.063,30:27.3649,24:22.3798,29:27.7329,17:19.5239,51:11.3218,36:24.9237,12:29.8338,23:29.4161,58:16.7769,21:21.6134,11:25.0269,10:33.0092,15:20.7823,7:29.0116,28:21.0814,46:17.3606,33:24.4107,55:16.2518,54:13.0867,25:19.5023,3:30.2747,49:17.1719,41:23.6301,1:31.9323,26:25.9562,44:12.589,37:23.8625,56:13.0504,42:21.7044,27:19.0158,50:18.1697,16:31.2216,40:15.0034,48:13.3929,39:15.1154,9:26.1234,52:16.2488,13:28.2827,43:13.7736,19:29.0929,59:15.5938,2:35.2972,20:29.3279,18:19.5753,22:20.3201,35:25.5542,57:18.7331,45:12.6837,38:23.153,47:16.8025,14:31.7783,53:9.59883}
{0:30.585,31:25.6265,34:22.5508,4:23.2883,32:20.9094,5:23.5485,8:26.0472,6:33.9241,30:22.9331,24:21.2965,29:16.4739,17:21.4671,51:13.7645,36:16.3136,12:28.751,23:25.9993,58:15.7032,21:26.6136,11:25.1679,10:22.9901,15:19.9875,7:26.1884,28:17.8325,46:16.2438,33:21.6187,55:16.3824,54:12.2492,25:20.8538,3:32.484,49:13.531,41:19.7712,1:27.6158,26:26.5022,44:18.9917,37:17.6413,56:12.453,42:15.1227,27:19.1425,50:16.5611,16:29.2758,40:20.812,48:15.4715,39:21.507,9:29.0487,52:10.3319,13:29.8951,43:20.405,19:29.8969,59:14.9594,2:28.1859,20:20.0068,18:21.5377,22:21.328,35:14.8835,57:17.4767,45:15.4031,38:18.4802,47:12.1789,14:21.2976,53:11.6633}
{0:32.2096,31:15.4992,34:17.9281,4:33.632,32:13.0897,5:30.5443,8:27.5945,6:25.3864,30:15.9085,24:21.3288,29:12.2563,17:24.1568,51:-0.117786,36:18.0551,12:28.6277,23:23.2977,58:-1.59294,21:21.6001,11:27.2901,10:26.9767,15:26.0943,7:22.7955,28:15.2549,46:8.9268,33:18.9297,55:1.25219,54:6.62886,25:16.7986,3:30.9754,49:1.17232,41:11.6012,1:33.9926,26:17.0826,44:11.9399,37:16.8878,56:3.90881,42:13.5745,27:21.0528,50:8.30608,16:18.6928,40:15.9126,48:11.7121,39:7.56077,9:24.6719,52:10.7466,13:29.6414,43:6.56842,19:16.3747,59:0.744567,2:30.647,20:14.8516,18:22.5838,22:24.7496,35:18.0678,57:3.18627,45:2.73129,38:11.4469,47:8.15836,14:23.5934,53:7.47699}
{0:29.6948,31:22.3579,34:25.6458,4:27.9088,32:22.2914,5:28.4783,8:23.98,6:26.8705,30:20.3049,24:29.1417,29:23.5765,17:29.6471,51:24.3678,36:23.2488,12:32.7012,23:24.3822,58:19.2189,21:22.1548,11:29.2516,10:27.4549,15:26.8336,7:32.8826,28:28.3728,46:23.4042,33:24.8354,55:22.927,54:17.5799,25:27.5692,3:26.1917,49:17.5259,41:19.194,1:27.9318,26:21.1145,44:24.5357,37:19.3518,56:23.257,42:20.6867,27:22.3714,50:23.0569,16:29.6949,40:21.9438,48:20.3055,39:17.8259,9:26.4234,52:15.6188,13:26.7037,43:23.5869,19:23.7024,59:15.026,2:26.9575,20:31.0647,18:24.5459,22:27.7423,35:28.8045,57:17.2779,45:22.859,38:28.0225,47:19.2278,14:28.4083,53:23.0707}
{0:33.1911,31:17.7721,34:16.6986,4:24.7095,32:13.6053,5:27.4461,8:29.039,6:31.4511,30:11.0074,24:24.3497,29:17.651,17:19.1889,51:0.431703,36:10.3253,12:28.3421,23:14.1935,58:2.28097,21:20.7004,11:29.4334,10:22.2325,15:28.6027,7:31.5948,28:16.2177,46:7.04484,33:12.0051,55:1.98617,54:0.274827,25:12.6326,3:31.4508,49:7.27097,41:15.2256,1:35.5345,26:20.005,44:13.1346,37:11.9331,56:8.28592,42:12.0908,27:20.134,50:1.28613,16:20.412,40:8.6288,48:2.59947,39:11.2275,9:24.526,52:7.75379,13:26.263,43:4.82213,19:21.6072,59:-1.92984,2:27.0973,20:22.6164,18:25.1207,22:21.5987,35:10.0961,57:0.0819632,45:14.9183,38:13.376,47:10.1369,14:24.6708,53:6.44659}
{0:30.9772,31:19.6279,34:15.3713,4:24.2642,32:9.85651,5:26.4414,8:26.97,6:26.1082,30:19.7697,24:25.209,29:19.0361,17:23.1423,51:6.13621,36:13.3258,12:22.0538,23:18.0611,58:3.69343,21:21.4165,11:30.8381,10:26.2821,15:21.2964,7:22.9864,28:13.9527,46:11.445,33:11.2394,55:0.528903,54:5.41335,25:16.9953,3:26.6005,49:5.00235,41:10.196,1:24.951,26:23.6364,44:7.21404,37:10.9168,56:10.4357,42:5.55616,27:18.3242,50:7.47589,16:19.505,40:17.7733,48:7.93356,39:14.6843,9:25.8547,52:8.10335,13:28.3504,43:13.6933,19:19.9822,59:6.59807,2:30.7112,20:20.1416,18:22.0215,22:26.2226,35:13.7625,57:9.5712,45:8.81322,38:17.2443,47:12.8481,14:27.3012,53:9.53288}
{0:34.7136,31:18.8886,34:19.6038,4:28.8608,32:18.0232,5:29.1837,8:24.298,6:25.1854,30:10.8564,24:14.0849,29:19.959,17:18.4775,51:10.9559,36:9.68207,12:25.5336,23:17.2606,58:2.28892,21:14.4479,11:30.7925,10:28.0662,15:28.3218,7:27.2577,28:22.3895,46:13.6245,33:19.2931,55:4.62937,54:4.71523,25:15.544,3:28.7935,49:11.3733,41:6.08845,1:25.6827,26:17.6515,44:4.06271,37:13.0106,56:-1.03235,42:11.8836,27:21.6535,50:8.53843,16:27.352,40:11.777,48:12.9402,39:12.6446,9:31.4196,52:0.440651,13:18.2851,43:5.06625,19:25.6711,59:-0.692463,2:33.6973,20:14.9142,18:26.8226,22:15.9609,35:18.604,57:-0.0132477,45:5.28268,38:10.9612,47:5.59019,14:20.2208,53:10.7765}
{0:26.1247,31:23.1771,34:25.4494,4:25.6603,32:21.4645,5:23.2999,8:24.6248,6:23.6176,30:26.0699,24:24.1417,29:18.8051,17:32.142,51:14.4901,36:21.9889,12:26.4712,23:30.4615,58:13.0396,21:21.2364,11:31.5233,10:24.3433,15:21.8115,7:27.8573,28:28.9113,46:14.0026,33:18.9396,55:11.978,54:22.1036,25:28.305,3:32.7798,49:19.487,41:19.2302,1:33.7424,26:26.5608,44:16.057,37:22.6317,56:14.408,42:26.0642,27:20.0861,50:20.4841,16:25.8202,40:17.0051,48:16.7658,39:18.8495,9:30.7659,52:20.0132,13:31.2621,43:18.2775,19:21.1113,59:22.8257,2:24.7431,20:30.2247,18:29.2186,22:30.6707,35:24.946,57:18.4699,45:17.4775,38:17.8575,47:22.5751,14:30.7969,53:12.7963}
{0:24.1722,31:18.7985,34:23.8501,4:23.6256,32:27.5608,5:25.6234,8:24.6251,6:25.4016,30:18.4264,24:19.7683,29:26.8809,17:27.1303,51:16.128,36:16.9417,12:33.2535,23:21.2019,58:22.5466,21:27.8165,11:24.0766,10:23.9274,15:24.2373,7:33.5066,28:28.5421,46:15.1054,33:26.2388,55:19.4196,54:19.0409,25:22.4513,3:29.2775,49:19.9936,41:19.2969,1:26.8842,26:29.3202,44:15.7784,37:24.3398,56:16.1165,42:15.992,27:21.7103,50:15.742,16:20.8971,40:25.5576,48:19.1207,39:22.2798,9:27.7983,52:23.3637,13:30.7935,43:21.6935,19:25.6788,59:12.3747,2:34.8419,20:23.2549,18:25.5326,22:27.9102,35:16.6442,57:16.6219,45:20.0558,38:15.6341,47:23.3554,14:21.4412,53:18.1996}
{0:25.1641,31:17.8279,34:17.1333,4:28.5656,32:15.2193,5:25.945,8:21.4482,6:32.9917,30:18.861,24:16.7727,29:23.5943,17:25.2142,51:9.26865,36:18.3208,12:24.4718,23:23.4658,58:12.4269,21:23.4012,11:29.4802,10:26.0083,15:19.1058,7:30.6476,28:16.899,46:11.366,33:18.8675,55:12.3603,54:10.0499,25:20.0778,3:32.0338,49:14.6903,41:13.2167,1:24.8029,26:25.0109,44:11.3903,37:13.7796,56:8.75875,42:14.3181,27:16.8918,50:8.4279,16:22.8913,40:16.8993,48:12.3333,39:13.3691,9:30.3762,52:3.81746,13:26.509,43:13.4884,19:20.195,59:6.27175,2:29.5516,20:19.3054,18:23.8968,22:19.2099,35:21.6748,57:4.25425,45:15.8797,38:15.5285,47:16.461,14:18.5302,53:11.7}
{0:25.3855,31:24.3082,34:16.9156,4:27.9633,32:20.1711,5:27.3849,8:28.43,6:22.7025,30:25.1818,24:17.9815,29:20.7829,17:24.2523,51:10.4621,36:15.4169,12:28.7405,23:22.3173,58:14.1822,21:27.3317,11:31.2571,10:32.5079,15:21.3039,7:32.2296,28:23.3979,46:19.6772,33:22.4566,55:9.79587,54:19.4824,25:23.9951,3:26.62,49:19.5817,41:14.263,1:33.7287,26:19.1213,44:16.0238,37:16.3948,56:18.272,42:15.2475,27:17.7574,50:14.5779,16:21.8092,40:16.2089,48:22.0127,39:19.9421,9:28.1527,52:19.6844,13:27.7997,43:15.3951,19:27.009,59:19.0916,2:34.7253,20:28.2028,18:24.495,22:19.3571,35:20.5779,57:9.33937,45:15.9643,38:24.0616,47:19.0959,14:29.7606,53:14.5162}
{0:24.6305,31:22.8023,34:23.4309,4:23.276,32:18.0885,5:26.1622,8:22.0408,6:24.5246,30:24.532,24:25.9981,29:17.6993,17:25.3261,51:14.9731,36:18.0339,12:30.1851,23:18.283,58:4.84264,21:17.7266,11:25.5631,10:28.4661,15:23.3467,7:27.5852,28:19.4889,46:13.7183,33:14.545,55:6.19079,54:8.39829,25:21.317,3:25.8944,49:8.14566,41:19.7348,1:30.1956,26:26.8869,44:16.4988,37:12.2901,56:9.2694,42:9.91965,27:22.7514,50:9.26186,16:24.255,40:20.2014,48:12.8528,39:14.1295,9:29.0644,52:7.9414,13:30.539,43:14.6629,19:26.2497,59:13.0969,2:27.9076,20:26.6494,18:20.9828,22:24.809,35:17.5519,57:4.82186,45:12.1354,38:12.7166,47:15.1334,14:24.6159,53:14.7936}
{0:33.9476,31:22.306,34:18.7011,4:28.6238,32:16.4992,5:27.0976,8:23.5246,6:29.6932,30:27.3876,24:22.7642,29:23.2024,17:21.1805,51:19.6144,36:20.0893,12:21.8227,23:17.8592,58:8.94064,21:19.303,11:26.0993,10:25.8565,15:30.8167,7:22.4303,28:27.681,46:17.6883,33:21.4736,55:18.355,54:18.7589,25:18.3083,3:24.1025,49:21.1325,41:18.5386,1:28.6465,26:28.5453,44:17.1377,37:22.9158,56:18.6462,42:18.8342,27:21.2634,50:17.7934,16:27.2363,40:22.719,48:20.2019,39:22.6173,9:32.1073,52:20.8373,13:30.7098,43:18.7083,19:28.3645,59:19.7619,2:28.6307,20:20.3812,18:19.8013,22:26.0885,35:18.7056,57:9.79881,45:15.3623,38:20.8645,47:15.6039,14:24.249,53:15.4242}
{0:33.417,31:15.8024,34:10.6217,4:22.9147,32:12.5825,5:27.5904,8:24.342,6:28.2597,30:15.0255,24:16.8947,29:21.1299,17:17.1831,51:4.98464,36:13.2522,12:27.9076,23:24.6824,58:0.981456,21:18.6632,11:21.9991,10:25.352,15:19.0704,7:27.6302,28:23.5218,46:15.1895,33:19.9437,55:10.0966,54:10.129,25:23.7329,3:34.364,49:8.69931,41:15.8434,1:27.9357,26:17.4849,44:7.30302,37:19.0468,56:4.86615,42:9.0538,27:18.1212,50:3.16372,16:26.8686,40:12.7362,48:14.8977,39:10.8319,9:31.7961,52:7.58517,13:25.6568,43:10.0422,19:21.4822,59:7.4029,2:33.7458,20:24.2447,18:18.8791,22:23.2882,35:9.76449,57:2.43136,45:11.0966,38:19.2028,47:13.05,14:28.0484,53:3.24965}
{0:30.6731,31:20.1268,34:13.0987,4:30.0923,32:18.8272,5:27.1131,8:27.6545,6:30.019,30:17.4494,24:15.1911,29:19.3787,17:18.0463,51:1.38036,36:15.919,12:25.2718,23:19.0443,58:7.72181,21:23.8665,11:28.2573,10:26.1861,15:26.7864,7:27.5623,28:19.1825,46:6.87632,33:10.3901,55:8.27508,54:8.5813,25:23.7073,3:27.5423,49:1.63292,41:11.1116,1:28.2793,26:20.0649,44:9.42033,37:14.8453,56:4.68996,42:11.6386,27:23.2888,50:5.72122,16:18.7785,40:13.9968,48:8.60638,39:10.0859,9:26.8026,52:10.1265,13:24.9788,43:15.3707,19:20.0003,59:0.981535,2:24.7474,20:24.9644,18:17.227,22:17.4464,35:11.0317,57:0.908005,45:8.21002,38:8.59493,47:7.73456,14:28.3059,53:10.5025}
{0:28.237,31:12.2217,34:10.6549,4:27.4289,32:16.845,5:22.1189,8:31.1865,6:30.6925,30:12.0343,24:17.2185,29:12.8804,17:17.5024,51:10.1569,36:20.6187,12:27.564,23:22.5046,58:1.07991,21:15.8203,11:23.5807,10:21.6425,15:20.3233,7:26.182,28:21.0186,46:11.9998,33:21.4863,55:12.1415,54:7.93756,25:21.0762,3:23.3101,49:15.5729,41:8.52015,1:25.2148,26:16.3288,44:17.5245,37:20.7113,56:12.2877,42:18.3202,27:17.7904,50:5.92907,16:19.0171,40:14.0464,48:8.98792,39:15.9045,9:25.2456,52:10.9641,13:29.0278,43:13.5702,19:24.8531,59:9.6817,2:29.3787,20:25.7899,18:23.6449,22:15.9372,35:18.8171,57:4.0683,45:6.40917,38:19.9809,47:15.0261,14:28.8273,53:9.94033}
{0:35.7396,31:16.8624,34:12.1147,4:26.2843,32:19.4683,5:25.5625,8:27.4413,6:26.4271,30:21.2986,24:14.3687,29:13.5329,17:17.8104,51:5.44365,36:15.8753,12:27.4227,23:21.0575,58:8.28877,21:26.1718,11:25.1076,10:29.155,15:28.6247,7:24.33,28:13.2265,46:10.1466,33:14.547,55:8.04524,54:6.89827,25:20.2499,3:23.0945,49:1.49869,41:12.4594,1:29.0285,26:20.2967,44:12.0027,37:18.3861,56:8.27747,42:15.9026,27:17.7351,50:3.36798,16:18.8546,40:11.636,48:9.02582,39:7.01546,9:20.8124,52:7.28467,13:23.0963,43:6.51846,19:18.4717,59:-1.662,2:26.5168,20:25.8213,18:16.6391,22:15.8806,35:12.4137,57:-0.8757,45:14.8836,38:14.7075,47:7.54174,14:24.6975,53:4.65956}
{0:31.1376,31:18.2162,34:21.8254,4:22.9991,32:15.9836,5:30.4754,8:23.1373,6:25.1584,30:14.9542,24:21.6605,29:23.1094,17:28.279,51:15.1848,36:12.0791,12:21.3204,23:20.4417,58:3.41232,21:15.9972,11:27.4721,10:29.621,15:18.7878,7:21.7782,28:20.2241,46:17.8635,33:16.9387,55:9.2859,54:11.1286,25:16.1927,3:24.8212,49:12.9645,41:12.7457,1:24.7448,26:14.4528,44:11.8186,37:14.5883,56:3.18458,42:16.2494,27:17.6462,50:15.7822,16:25.252,40:18.5478,48:17.1012,39:9.87548,9:22.2747,52:13.2165,13:25.7653,43:8.66085,19:27.5304,59:5.43794,2:28.6682,20:24.6246,18:28.5729,22:24.9298,35:17.5109,57:11.0607,45:14.6308,38:19.6714,47:13.2443,14:22.5151,53:12.2548}
{0:27.0119,31:19.3448,34:14.7298,4:26.8086,32:15.2568,5:26.9231,8:20.9861,6:23.2535,30:11.0828,24:16.2029,29:21.8596,17:24.9336,51:11.2762,36:9.35319,12:19.8703,23:15.1064,58:1.90397,21:23.6925,11:24.7217,10:24.8389,15:20.57,7:22.23,28:19.8561,46:6.33296,33:13.5007,55:7.15758,54:11.959,25:23.4176,3:29.6043,49:7.67498,41:14.711,1:29.9452,26:23.6217,44:16.1162,37:11.2256,56:9.59182,42:10.7968,27:15.8307,50:12.0797,16:27.3096,40:14.5311,48:5.52019,39:9.66589,9:28.3881,52:11.7172,13:19.9859,43:7.92504,19:20.2459,59:1.39017,2:30.6532,20:17.8174,18:17.0405,22:23.8948,35:18.9164,57:5.23617,45:7.13834,38:9.02919,47:12.6102,14:22.5913,53:8.63025}
{0:34.0222,31:20.2572,34:22.4176,4:26.4701,32:23.0466,5:27.4903,8:31.178,6:28.9346,30:25.0846,24:28.9802,29:19.5043,17:27.222,51:18.7282,36:20.654,12:25.4165,23:18.9187,58:20.822,21:20.4947,11:32.8765,10:22.8958,15:28.906,7:34.2685,28:20.3422,46:16.6961,33:16.8605,55:11.4273,54:22.4402,25:20.233,3:27.1612,49:22.5597,41:26.1012,1:32.2001,26:23.2726,44:17.7151,37:20.8718,56:16.6004,42:18.9999,27:23.7426,50:21.3817,16:21.584,40:25.8679,48:21.3584,39:19.8727,9:23.5314,52:21.0722,13:23.8834,43:14.1556,19:24.3622,59:17.3838,2:30.3122,20:25.8671,18:21.6238,22:29.6256,35:19.1377,57:15.1179,45:22.5731,38:21.5548,47:13.9299,14:20.9112,53:22.3388}
{0:35.0966,31:10.167,34:7.51216,4:34.0126,32:15.2671,5:22.4776,8:26.8128,6:23.8626,30:10.2116,24:23.3505,29:13.2671,17:18.0514,51:6.09797,36:15.5546,12:27.4627,23:15.8252,58:-0.971271,21:14.7552,11:29.0207,10:28.3907,15:26.8658,7:22.9774,28:20.2434,46:11.012,33:15.5423,55:4.21189,54:-1.39903,25:21.5755,3:27.8615,49:6.85374,41:12.0228,1:33.1028,26:14.7377,44:14.1481,37:15.5886,56:5.90127,42:9.47595,27:15.8648,50:10.225,16:24.2003,40:8.66552,48:6.13932,39:10.7625,9:25.5049,52:3.70608,13:29.3677,43:8.98736,19:25.9572,59:2.86561,2:28.9347,20:20.051,18:25.5766,22:17.6556,35:17.461,57:-1.51052,45:12.1311,38:13.3083,47:6.98596,14:23.8192,53:8.11839}
{0:28.0945,31:17.6919,34:18.648,4:33.3754,32:25.2431,5:25.3099,8:27.9607,6:24.0606,30:28.368,24:28.5159,29:23.2155,17:25.9383,51:18.8633,36:24.134,12:21.4395,23:28.3671,58:11.6398,21:19.2291,11:24.9699,10:28.4668,15:23.6599,7:32.7906,28:21.4223,46:15.7768,33:24.9222,55:11.4373,54:22.1343,25:23.8428,3:23.7788,49:23.4673,41:19.5753,1:29.2517,26:27.0123,44:14.7848,37:20.1883,56:11.6819,42:15.1691,27:27.1104,50:19.4515,16:22.4952,40:14.5142,48:16.3171,39:15.5424,9:28.6136,52:14.4655,13:21.961,43:20.8684,19:24.7159,59:10.6781,2:29.2025,20:29.8685,18:23.2558,22:23.4089,35:27.0239,57:20.2316,45:13.291,38:18.6108,47:20.2232,14:29.2361,53:12.6258}
{0:29.4055,31:18.2025,34:24.9871,4:28.5793,32:24.2575,5:22.8407,8:22.6877,6:31.4155,30:22.7973,24:19.1946,29:22.729,17:28.7355,51:23.7401,36:24.0409,12:25.6945,23:23.6835,58:11.9985,21:22.3551,11:26.6347,10:26.9392,15:22.5101,7:24.7897,28:28.5165,46:13.7158,33:22.598,55:21.5127,54:17.6371,25:26.5488,3:28.0234,49:21.7077,41:22.3693,1:24.3264,26:27.8226,44:24.8453,37:24.7849,56:21.0558,42:17.8565,27:26.0426,50:21.9493,16:29.6712,40:20.7985,48:24.5703,39:25.51,9:27.8992,52:21.0359,13:22.9756,43:25.7601,19:27.9329,59:21.9009,2:33.5648,20:30.1872,18:23.2183,22:27.828,35:19.9862,57:12.5057,45:16.5376,38:22.3876,47:14.174,14:23.7026,53:17.3739}
{0:35.8373,31:21.1572,34:19.882,4:34.4542,32:19.3002,5:29.156,8:22.4118,6:32.7133,30:21.4891,24:28.7962,29:20.0162,17:26.6263,51:12.3863,36:23.7338,12:29.4798,23:23.3793,58:16.8876,21:19.0526,11:24.9384,10:22.3509,15:23.3176,7:23.5964,28:24.7966,46:14.6654,33:19.3594,55:13.2322,54:17.4471,25:21.7695,3:31.7084,49:13.5242,41:18.9899,1:32.7946,26:25.8534,44:17.4742,37:16.3124,56:16.0543,42:21.2792,27:22.6446,50:17.4733,16:23.5108,40:20.494,48:18.4765,39:23.7821,9:28.8727,52:15.1768,13:24.7559,43:23.881,19:21.9594,59:19.2893,2:30.5131,20:29.3138,18:25.3323,22:30.092,35:17.7018,57:13.3942,45:17.3956,38:17.3248,47:23.933,14:21.3034,53:10.8764}
{0:32.8419,31:19.9484,34:14.8263,4:27.1874,32:18.6463,5:22.5099,8:30.9183,6:31.6122,30:15.336,24:18.3831,29:15.496,17:18.9701,51:19.4226,36:24.709,12:28.6944,23:23.2795,58:14.501,21:17.5878,11:27.0536,10:25.9808,15:23.6589,7:24.0758,28:20.0076,46:16.1151,33:16.7662,55:14.4049,54:12.012,25:27.4142,3:27.1099,49:14.1459,41:22.6398,1:30.5906,26:18.1144,44:19.1882,37:21.0817,56:8.10312,42:13.6018,27:24.5893,50:18.7891,16:26.9835,40:11.8434,48:16.7483,39:18.9906,9:21.6329,52:17.0956,13:22.3045,43:18.7915,19:26.6631,59:11.3823,2:24.2451,20:28.6976,18:21.5888,22:20.2201,35:20.256,57:9.75679,45:21.5652,38:13.8329,47:12.66,14:28.9285,53:14.2108}
{0:24.4315,31:22.3221,34:24.6425,4:27.0166,32:18.3629,5:34.4813,8:25.4095,6:32.315,30:26.0366,24:20.319,29:25.0294,17:27.7035,51:19.9437,36:24.9368,12:29.8212,23:21.9797,58:16.0723,21:29.4444,11:28.3664,10:21.7881,15:27.262,7:33.2189,28:16.2218,46:21.3295,33:17.7793,55:11.2592,54:19.7182,25:19.1981,3:26.6998,49:21.4113,41:22.8283,1:25.7824,26:24.5807,44:17.6032,37:21.8597,56:8.16121,42:19.6984,27:26.1567,50:17.9483,16:28.9518,40:16.1608,48:13.402,39:22.2766,9:32.4956,52:10.582,13:30.9363,43:19.927,19:18.8191,59:13.3423,2:35.2561,20:23.2833,18:25.6918,22:25.9763,35:24.3427,57:12.9588,45:19.5691,38:16.5224,47:14.1293,14:31.6188,53:13.1161}
{0:24.3533,31:13.6966,34:12.2236,4:28.9761,32:15.1108,5:22.368,8:31.0431,6:31.4001,30:20.3911,24:18.9186,29:20.578,17:20.5268,51:9.84957,36:9.46248,12:29.0218,23:25.3975,58:6.46623,21:14.9626,11:30.4338,10:31.5241,15:22.4059,7:24.988,28:23.4948,46:4.45192,33:9.44602,55:2.97256,54:7.8735,25:13.8473,3:25.9671,49:8.33704,41:16.452,1:32.4537,26:21.1135,44:11.095,37:10.1514,56:10.8578,42:12.5749,27:16.637,50:9.29436,16:23.5777,40:12.1974,48:10.5764,39:17.0121,9:27.8945,52:5.12968,13:23.064,43:16.2184,19:23.4436,59:2.31222,2:30.1623,20:26.9127,18:22.2127,22:21.4433,35:19.525,57:7.57085,45:5.10706,38:8.05892,47:11.2855,14:25.6775,53:8.53378}
{0:30.3437,31:23.9378,34:13.0533,4:24.6478,32:21.5711,5:28.7398,8:21.7956,6:33.1153,30:23.3975,24:24.987,29:25.7381,17:28.7386,51:14.1697,36:12.6165,12:25.0326,23:25.5583,58:5.1297,21:27.3788,11:22.1884,10:21.1858,15:28.369,7:23.427,28:15.1925,46:15.7427,33:14.6873,55:5.77023,54:12.2622,25:26.5504,3:30.4553,49:10.8024,41:17.3371,1:27.5045,26:23.6938,44:10.5604,37:11.2593,56:9.29709,42:17.1382,27:18.0178,50:10.6332,16:24.4704,40:11.6903,48:11.2816,39:21.1704,9:30.9214,52:7.2796,13:26.0609,43:9.52765,19:28.0525,59:7.31988,2:27.6812,20:17.8439,18:27.0018,22:27.8012,35:20.2222,57:11.7296,45:14.9921,38:18.6379,47:13.2759,14:28.6734,53:9.88034}
{0:27.3432,31:17.6866,34:19.9376,4:31.7596,32:21.5503,5:29.8503,8:22.5511,6:25.9467,30:18.2757,24:24.7361,29:16.9505,17:20.847,51:9.62529,36:17.6595,12:22.7185,23:16.5502,58:3.81986,21:17.6091,11:31.4698,10:27.4702,15:22.0138,7:22.3783,28:14.968,46:12.824,33:18.6756,55:1.94922,54:2.95955,25:19.39,3:23.3798,49:6.26546,41:18.555,1:26.4136,26:13.315,44:16.3785,37:13.7809,56:12.7417,42:13.9173,27:19.0185,50:12.1544,16:19.1516,40:8.84436,48:10.63,39:17.917,9:21.8173,52:6.89857,13:24.9992,43:18.001,19:18.6317,59:10.4029,2:23.7133,20:26.6906,18:22.5085,22:26.1597,35:9.57349,57:0.849901,45:13.4829,38:17.5686,47:12.0112,14:28.1113,53:4.52585}
{0:31.8512,31:14.8252,34:22.315,4:34.4976,32:15.8507,5:24.876,8:32.3291,6:22.6843,30:18.9411,24:22.6422,29:25.7528,17:22.2347,51:17.8848,36:19.3308,12:26.0268,23:26.2855,58:18.3529,21:19.6171,11:31.4081,10:25.6756,15:28.2669,7:32.6369,28:20.766,46:15.5054,33:23.8351,55:12.7998,54:10.9447,25:18.7147,3:23.2164,49:20.8492,41:14.618,1:34.2361,26:17.3133,44:18.4041,37:14.292,56:10.6177,42:14.6194,27:16.6841,50:10.3944,16:22.4074,40:20.8642,48:17.3663,39:18.6474,9:29.0549,52:17.3155,13:21.89,43:14.0314,19:27.9187,59:9.51863,2:34.814,20:23.177,18:19.1878,22:27.1141,35:20.2915,57:15.1344,45:17.8932,38:18.8216,47:15.8982,14:24.5048,53:17.1813}
{0:30.2747,31:20.2561,34:18.08,4:27.0979,32:15.4312,5:34.1485,8:28.1955,6:25.2489,30:20.1694,24:22.2329,29:23.9614,17:21.0358,51:17.012,36:13.4074,12:24.0293,23:22.8267,58:8.91041,21:25.2367,11:29.5611,10:21.6152,15:19.7116,7:26.186,28:22.3735,46:16.0106,33:23.1483,55:16.6404,54:6.05088,25:17.0657,3:25.5482,49:16.9555,41:18.7887,1:29.1253,26:15.3115,44:12.3036,37:16.0202,56:11.4795,42:13.7794,27:26.8371,50:16.1972,16:23.1028,40:17.8805,48:18.0663,39:14.8513,9:29.1789,52:8.62362,13:24.0102,43:21.3651,19:21.0515,59:6.26275,2:29.6897,20:23.0602,18:19.1497,22:17.0055,35:18.3264,57:11.1053,45:20.9104,38:19.0145,47:8.83626,14:27.8176,53:7.00933}
{0:25.2342,31:21.6823,34:11.5196,4:34.1381,32:20.6943,5:29.5591,8:30.9778,6:30.1461,30:18.4704,24:25.6269,29:20.7455,17:18.0944,51:12.3613,36:12.1979,12:27.2215,23:25.4254,58:12.1495,21:26.6197,11:22.8874,10:29.0209,15:28.031,7:23.0317,28:18.4429,46:13.06,33:20.9258,55:14.0501,54:2.91396,25:24.5529,3:31.9949,49:16.0313,41:11.2102,1:30.1412,26:20.7388,44:12.8323,37:11.3362,56:6.32247,42:15.6798,27:23.0557,50:5.04388,16:28.181,40:17.8332,48:6.42355,39:9.3796,9:31.9977,52:12.4092,13:22.1893,43:14.853,19:22.0669,59:6.74786,2:33.3545,20:16.1861,18:23.1295,22:16.4897,35:12.8914,57:8.20207,45:9.4515,38:17.4035,47:10.6872,14:24.3894,53:7.36265}
{0:29.4036,31:17.2963,34:17.1284,4:30.2164,32:13.5217,5:30.135,8:26.1793,6:28.1863,30:19.1168,24:14.6973,29:22.2931,17:25.3612,51:3.07011,36:8.3841,12:24.1877,23:22.184,58:4.20753,21:25.7234,11:19.6399,10:19.8351,15:19.1186,7:30.7717,28:21.0456,46:4.03417,33:13.8994,55:5.64776,54:0.499951,25:21.1752,3:24.6805,49:8.08277,41:9.27891,1:34.9917,26:16.8884,44:5.25602,37:15.874,56:5.13304,42:13.1356,27:22.5051,50:12.0496,16:27.5648,40:8.53994,48:2.45611,39:6.12791,9:26.2206,52:5.31799,13:28.539,43:13.6461,19:18.3806,59:2.03519,2:32.7926,20:25.9763,18:15.6888,22:14.9163,35:7.54818,57:3.14431,45:10.9403,38:16.0611,47:6.84536,14:28.256,53:0.0562239}
{0:29.4863,31:27.6019,34:15.0143,4:25.4796,32:23.6058,5:27.3296,8:22.1133,6:27.2749,30:20.2534,24:29.5951,29:23.0726,17:26.2592,51:21.5087,36:21.2883,12:27.8621,23:27.4274,58:10.1848,21:21.6194,11:27.0557,10:32.3554,15:28.8926,7:34.0207,28:25.1914,46:19.9341,33:22.5174,55:20.1225,54:15.3237,25:22.7472,3:29.3063,49:15.6365,41:16.0147,1:32.5188,26:28.3543,44:20.1962,37:25.342,56:20.1629,42:18.3906,27:21.0305,50:14.3109,16:20.7954,40:23.4501,48:20.876,39:24.7516,9:21.8338,52:14.659,13:25.0213,43:17.318,19:30.2359,59:11.1807,2:29.1763,20:28.547,18:30.2634,22:23.0259,35:16.278,57:15.7328,45:20.2778,38:25.0332,47:16.3151,14:28.5213,53:15.0321}
{0:33.1144,31:9.14273,34:16.7642,4:29.5868,32:10.9884,5:31.1791,8:21.8706,6:31.1421,30:14.6208,24:17.7859,29:16.538,17:18.3102,51:0.174981,36:6.8178,12:25.4164,23:16.4925,58:0.0832371,21:14.3574,11:21.8242,10:22.932,15:19.5583,7:20.8126,28:12.0377,46:8.80213,33:11.774,55:7.56332,54:2.70788,25:18.913,3:30.4045,49:1.64814,41:9.96114,1:26.6914,26:17.9895,44:5.42689,37:9.54447,56:7.8913,42:7.53571,27:19.3273,50:7.0276,16:27.5362,40:8.38203,48:11.9813,39:7.26489,9:25.732,52:1.28478,13:24.6159,43:2.91175,19:16.3817,59:6.07706,2:25.7253,20:24.4254,18:16.5238,22:22.2045,35:7.31679,57:0.175348,45:2.87478,38:11.1129,47:2.8077,14:23.1239,53:5.22474}
{0:30.4612,31:14.6082,34:11.1797,4:23.8344,32:11.2647,5:26.0907,8:31.7255,6:23.735,30:19.3654,24:16.6486,29:19.6216,17:26.8089,51:2.8637,36:14.2458,12:27.1882,23:24.1526,58:4.90753,21:20.7329,11:23.3209,10:31.0508,15:21.9442,7:23.1105,28:19.8727,46:9.46513,33:20.6043,55:-0.166977,54:1.37415,25:16.2341,3:29.7274,49:8.80697,41:11.4697,1:29.172,26:17.9854,44:6.92379,37:10.8296,56:2.1253,42:7.31103,27:11.7722,50:1.95951,16:25.3884,40:16.7308,48:2.83809,39:10.1942,9:22.9296,52:6.72767,13:18.231,43:10.611,19:16.5758,59:-0.431755,2:32.5098,20:23.5578,18:20.7333,22:18.3464,35:18.6428,57:8.30606,45:3.44007,38:7.23503,47:4.7637,14:22.9514,53:0.368986}
{0:32.991,31:18.8102,34:27.0623,4:23.746,32:20.5705,5:30.6823,8:33.2909,6:32.6023,30:27.0875,24:23.4122,29:18.3254,17:20.8151,51:13.5372,36:27.3976,12:22.1522,23:27.8043,58:20.9357,21:25.3732,11:27.3867,10:32.7442,15:29.8876,7:22.6777,28:18.4523,46:20.1164,33:19.6905,55:20.0691,54:17.4517,25:25.3564,3:30.3613,49:15.7192,41:16.6895,1:24.2543,26:21.7065,44:24.1528,37:19.9499,56:15.6855,42:17.5563,27:28.3684,50:23.34,16:31.5528,40:16.4337,48:25.4551,39:17.9038,9:25.5171,52:18.46,13:22.7668,43:22.4659,19:28.5734,59:21.6663,2:29.5469,20:25.8493,18:31.4096,22:27.3428,35:25.1625,57:12.4633,45:25.4548,38:21.7513,47:15.5205,14:30.4466,53:12.9931}
{0:30.8171,31:19.9421,34:15.6747,4:28.6604,32:11.1751,5:25.7043,8:30.3771,6:27.5007,30:14.331,24:17.0349,29:11.661,17:24.1674,51:10.2085,36:16.0096,12:25.2081,23:22.2813,58:5.75672,21:17.2233,11:26.6836,10:22.9376,15:17.7319,7:23.5134,28:10.9805,46:11.7748,33:10.7139,55:8.01917,54:0.0189295,25:23.7888,3:23.9332,49:10.1068,41:10.4921,1:28.0794,26:14.8775,44:5.39285,37:14.9722,56:-0.278892,42:14.7537,27:18.113,50:7.77903,16:17.5442,40:15.1543,48:3.36983,39:15.1312,9:27.5951,52:1.49295,13:26.8342,43:5.22246,19:19.2691,59:2.71798,2:24.6279,20:14.9781,18:25.6018,22:18.9624,35:15.4683,57:-0.0486482,45:13.6057,38:15.1011,47:6.30722,14:22.931,53:4.82216}
{0:32.1515,31:21.2823,34:17.0141,4:34.8277,32:26.6284,5:30.5989,8:31.5251,6:24.9039,30:21.1055,24:27.8534,29:25.7804,17:24.4828,51:12.1597,36:14.4105,12:29.7998,23:28.2517,58:16.4774,21:26.0646,11:22.536,10:30.235,15:22.3677,7:25.9072,28:25.3958,46:21.9219,33:15.132,55:10.4079,54:16.6527,25:19.9153,3:24.3034,49:11.5917,41:14.846,1:25.8943,26:22.2536,44:20.7686,37:20.5722,56:18.4884,42:18.4085,27:21.1315,50:18.7971,16:21.5713,40:19.161,48:11.2776,39:17.4731,9:22.8009,52:12.6644,13:31.1458,43:20.5789,19:29.5775,59:8.3664,2:31.4468,20:27.7878,18:25.6565,22:19.5227,35:21.1337,57:18.4867,45:20.1037,38:22.7793,47:17.7809,14:30.1842,53:16.2435}
{0:31.3466,31:17.3493,34:14.9124,4:30.5727,32:17.4248,5:32.373,8:24.0991,6:24.0311,30:18.4063,24:20.3424,29:12.9735,17:20.5696,51:4.11596,36:16.7306,12:26.4851,23:19.5406,58:6.93302,21:20.1633,11:29.8534,10:28.9931,15:22.5279,7:24.0567,28:13.4466,46:12.8234,33:11.0413,55:9.76838,54:2.28789,25:22.0605,3:29.885,49:10.9568,41:10.059,1:28.2446,26:21.3582,44:14.3007,37:9.84509,56:9.66064,42:16.7595,27:23.9507,50:8.36116,16:20.3898,40:18.4262,48:10.7891,39:18.2828,9:23.7766,52:3.73244,13:29.2446,43:14.1866,19:18.7861,59:4.6697,2:34.2753,20:22.1442,18:27.9208,22:17.6157,35:10.1469,57:2.18318,45:14.2774,38:14.8402,47:15.5741,14:28.1447,53:3.50793}
{0:35.4389,31:15.1356,34:21.9137,4:34.4881,32:16.3852,5:27.9524,8:29.1884,6:32.55,30:22.6272,24:24.9264,29:22.3426,17:25.1986,51:8.59462,36:18.0245,12:19.7454,23:18.1835,58:12.4776,21:26.5191,11:20.5195,10:29.2351,15:27.5098,7:25.2548,28:22.6177,46:13.7016,33:13.4787,55:7.61339,54:10.0609,25:15.0816,3:28.9824,49:11.098,41:16.2416,1:24.1039,26:17.4017,44:17.7149,37:15.1782,56:13.2946,42:12.7828,27:14.3512,50:13.7137,16:21.8793,40:18.6495,48:9.19026,39:11.9191,9:24.766,52:11.0058,13:27.3064,43:17.7098,19:19.3733,59:11.0946,2:27.345,20:19.3708,18:19.4699,22:19.2701,35:21.0717,57:12.2918,45:8.37173,38:19.7148,47:7.53667,14:29.2262,53:15.0312}
{0:34.887,31:24.7274,34:22.7894,4:29.6574,32:18.4147,5:26.1797,8:22.4446,6:25.3045,30:22.3065,24:26.1567,29:24.0847,17:28.9388,51:19.3968,36:16.2566,12:26.5715,23:23.8309,58:12.837,21:23.0652,11:30.7601,10:27.9863,15:27.8298,7:22.5465,28:28.6013,46:15.1357,33:23.7242,55:20.4052,54:19.5318,25:22.5912,3:28.8336,49:18.0942,41:19.3478,1:32.4731,26:25.1755,44:14.4621,37:18.0085,56:10.7802,42:19.8356,27:25.2925,50:22.9905,16:25.5591,40:24.604,48:22.1826,39:15.7787,9:27.1338,52:19.8402,13:28.4632,43:17.2888,19:23.2954,59:10.5311,2:31.9591,20:29.076,18:29.1516,22:20.9811,35:24.1259,57:17.7403,45:13.2031,38:24.135,47:13.7276,14:27.513,53:18.72}
{0:27.9193,31:15.2046,34:17.7686,4:25.4011,32:16.5523,5:27.7293,8:22.5289,6:33.3794,30:17.3943,24:23.7811,29:18.5668,17:30.2552,51:10.0365,36:12.4932,12:27.3716,23:19.3355,58:6.06895,21:23.3708,11:22.081,10:28.3321,15:19.5037,7:31.5525,28:15.4729,46:10.9829,33:20.4229,55:12.7214,54:18.5627,25:17.9405,3:29.6406,49:14.0571,41:22.4157,1:27.0722,26:18.7848,44:16.8903,37:19.4073,56:15.1715,42:22.2946,27:22.2014,50:8.59875,16:25.7138,40:17.2232,48:17.6279,39:21.4043,9:22.002,52:9.67112,13:23.1747,43:17.5641,19:29.6174,59:9.15327,2:29.1562,20:29.2198,18:28.3204,22:25.0809,35:18.5123,57:6.37333,45:18.9993,38:12.8058,47:17.7343,14:24.1321,53:10.6336}
{0:32.6914,31:17.2929,34:14.4425,4:25.9552,32:19.0701,5:24.0833,8:26.7933,6:24.7563,30:18.0316,24:18.6972,29:20.5652,17:20.8991,51:20.2378,36:20.4631,12:30.3892,23:22.223,58:11.6904,21:28.3758,11:30.8843,10:26.7764,15:22.2592,7:30.0422,28:21.8653,46:21.8015,33:19.1419,55:17.2832,54:17.8739,25:23.9395,3:24.9521,49:11.9257,41:21.543,1:29.2313,26:17.3301,44:15.7923,37:15.2154,56:15.6934,42:14.4743,27:18.3593,50:17.7769,16:31.2335,40:13.8183,48:18.3879,39:23.5021,9:27.4313,52:14.5013,13:25.7621,43:22.6142,19:26.6039,59:12.4405,2:25.8049,20:28.1765,18:30.7823,22:24.6597,35:18.7685,57:16.0223,45:12.0868,38:20.1455,47:13.9704,14:29.9405,53:10.0835}
{0:26.2727,31:10.4925,34:11.673,4:33.3289,32:11.0013,5:33.6097,8:28.5874,6:31.0716,30:18.4239,24:17.6992,29:11.7902,17:24.003,51:4.6316,36:11.4369,12:27.5457,23:15.9133,58:6.94501,21:23.9216,11:28.078,10:23.5573,15:25.9026,7:22.5296,28:20.6789,46:5.99189,33:17.9941,55:3.67469,54:3.01827,25:13.8826,3:34.2078,49:7.86494,41:16.7791,1:31.2289,26:17.494,44:11.3309,37:16.1966,56:0.454739,42:14.4489,27:16.3595,50:2.52577,16:24.4479,40:15.0886,48:11.4018,39:7.33085,9:21.1298,52:9.33515,13:25.8247,43:9.55112,19:22.1578,59:7.90108,2:29.7408,20:17.7109,18:23.1994,22:20.5496,35:11.0144,57:5.36246,45:10.5639,38:16.4348,47:8.3691,14:18.4541,53:6.77215}
{0:26.1482,31:17.7315,34:13.5982,4:26.8118,32:17.8974,5:24.6808,8:22.0336,6:31.3791,30:18.4484,24:18.8976,29:12.646,17:27.6476,51:3.16253,36:19.8319,12:30.8887,23:18.7861,58:2.9842,21:23.5766,11:22.4931,10:30.875,15:27.6955,7:22.0465,28:23.89,46:11.1404,33:14.679,55:12.3151,54:7.55165,25:18.0908,3:31.7969,49:14.6508,41:16.5173,1:30.8284,26:22.0207,44:13.3935,37:12.4893,56:9.58147,42:12.0243,27:20.674,50:8.29928,16:17.3703,40:18.8195,48:15.2645,39:18.9896,9:24.293,52:12.0389,13:19.1674,43:14.1313,19:26.4933,59:8.98081,2:27.1216,20:23.6347,18:23.8424,22:20.8837,35:12.6892,57:5.46155,45:15.473,38:9.74459,47:5.09371,14:19.1992,53:4.8927}
{0:30.8314,31:25.6805,34:20.2776,4:31.5375,32:21.2829,5:23.6594,8:27.8315,6:31.4132,30:18.7137,24:25.5593,29:20.6542,17:24.8458,51:14.6247,36:23.4373,12:22.7223,23:21.4899,58:6.20328,21:26.0366,11:25.239,10:32.4413,15:20.2113,7:27.3876,28:24.1054,46:16.6281,33:18.3744,55:12.5525,54:9.10473,25:24.4278,3:29.7727,49:16.8165,41:17.0994,1:31.9645,26:23.8868,44:10.6646,37:13.7654,56:8.81479,42:16.3009,27:18.595,50:18.8493,16:19.6383,40:20.7144,48:14.9148,39:21.0189,9:28.4347,52:15.5761,13:20.3257,43:17.9834,19:25.9531,59:14.6646,2:31.0937,20:27.8416,18:22.2237,22:19.9267,35:16.88,57:9.74044,45:13.5196,38:12.4613,47:9.87368,14:24.5093,53:15.0189}
{0:35.1132,31:34.8279,34:34.743,4:28.9799,32:42.4491,5:30.1395,8:33.5965,6:33.341,30:43.838,24:29.7947,29:37.9397,17:25.8835,51:44.7395,36:36.0166,12:25.9907,23:34.8752,58:36.5053,21:27.8246,11:25.864,10:26.4251,15:30.1098,7:28.367,28:44.4593,46:44.7604,33:39.8268,55:37.2934,54:44.8878,25:35.5663,3:35.2564,49:37.3492,41:35.3739,1:27.1904,26:32.9517,44:43.4215,37:40.9744,56:36.5857,42:41.9886,27:41.1319,50:44.752,16:27.3303,40:37.2016,48:33.6818,39:45.3021,9:28.3666,52:40.7702,13:26.2331,43:39.9425,19:32.7351,59:40.6512,2:32.3818,20:29.0269,18:26.5055,22:24.7139,35:35.7742,57:33.7802,45:39.1702,38:40.1797,47:33.3542,14:29.7679,53:39.4049}
{0:33.6538,31:35.6252,34:39.9374,4:28.2796,32:37.5762,5:25.9408,8:26.0542,6:30.4197,30:36.476,24:34.406,29:36.6563,17:33.1724,51:43.5164,36:44.5056,12:29.436,23:34.5243,58:40.3201,21:43.3228,11:35.624,10:33.9807,15:27.4886,7:30.5101,28:44.9551,46:36.6971,33:41.8404,55:33.8981,54:45.5195,25:38.3856,3:33.0079,49:35.2146,41:42.6031,1:30.231,26:41.9593,44:39.9294,37:41.5352,56:39.4479,42:37.1862,27:43.9185,50:41.8551,16:31.4476,40:45.4634,48:35.3982,39:36.0534,9:33.0288,52:40.7372,13:33.1059,43:35.4485,19:28.9266,59:34.6623,2:35.9104,20:32.9121,18:28.8098,22:41.8815,35:39.6701,57:44.0374,45:42.3567,38:35.1731,47:39.4953,14:32.5294,53:40.1519}
{0:31.4057,31:53.0376,34:44.6786,4:35.6963,32:45.2169,5:35.9387,8:36.0022,6:26.5382,30:44.17,24:26.5529,29:43.1994,17:24.5696,51:53.0626,36:52.1361,12:28.8315,23:28.1562,58:48.7797,21:31.1097,11:29.1624,10:34.4265,15:26.8276,7:28.4367,28:47.9502,46:43.9354,33:48.519,55:46.2305,54:47.6909,25:30.4796,3:25.0763,49:44.5527,41:45.38,1:25.2827,26:34.8113,44:50.7443,37:44.2174,56:46.4262,42:45.9356,27:35.3798,50:52.7787,16:25.951,40:48.3662,48:48.1833,39:54.0078,9:32.0851,52:52.7824,13:32.5008,43:51.2816,19:33.4445,59:45.5261,2:27.6296,20:34.6182,18:31.8324,22:29.5821,35:50.8273,57:42.1283,45:46.6462,38:52.5165,47:43.0713,14:24.1998,53:48.1419}
{0:25.3132,31:27.4526,34:26.9102,4:24.3474,32:34.3211,5:35.1044,8:29.1561,6:28.0067,30:24.9827,24:32.0506,29:34.765,17:34.8781,51:52.7129,36:26.8261,12:27.7409,23:35.2773,58:51.3556,21:24.5574,11:29.0588,10:27.6068,15:30.1131,7:31.3058,28:26.283,46:54.5313,33:31.5563,55:54.4854,54:49.8868,25:30.3617,3:26.3983,49:46.2858,41:43.5482,1:29.4558,26:32.0906,44:47.3933,37:29.0155,56:45.4647,42:45.858,27:34.938,50:54.9118,16:25.4994,40:49.1556,48:45.139,39:49.2078,9:24.7183,52:55.3194,13:24.6885,43:51.5312,19:27.4643,59:54.1924,2:27.8929,20:25.0234,18:31.0032,22:27.7636,35:24.1061,57:52.8844,45:43.5746,38:48.932,47:44.4001,14:30.4877,53:44.8456}
{0:34.6259,31:32.3961,34:42.2045,4:32.9495,32:33.5066,5:24.4616,8:24.4285,6:34.4529,30:44.254,24:41.6886,29:42.0635,17:33.5609,51:35.4708,36:42.3826,12:29.2292,23:38.5437,58:41.3126,21:28.111,11:26.8423,10:32.1141,15:33.5437,7:28.3762,28:34.3258,46:34.9057,33:37.8563,55:44.0454,54:40.8741,25:34.5425,3:35.3662,49:43.579,41:41.6835,1:29.5667,26:34.0894,44:37.347,37:38.5368,56:43.9955,42:40.1731,27:43.9143,50:38.0098,16:33.2385,40:39.6469,48:40.5719,39:36.1972,9:32.482,52:37.2496,13:33.677,43:44.0153,19:30.9595,59:41.3284,2:32.0502,20:30.3184,18:30.0683,22:35.2042,35:42.1575,57:33.0435,45:40.4221,38:38.2643,47:43.1883,14:29.4282,53:41.6177}
{0:27.6843,31:39.3342,34:43.0416,4:31.5214,32:45.2732,5:30.8292,8:26.4776,6:33.7203,30:27.7838,24:32.4101,29:33.3505,17:27.5492,51:35.7814,36:39.7837,12:25.3767,23:24.4656,58:46.7304,21:30.8883,11:34.7907,10:30.5321,15:28.1004,7:33.9729,28:26.2749,46:45.3603,33:41.5103,55:37.8367,54:36.5264,25:32.0432,3:35.1447,49:38.5245,41:41.2335,1:31.0146,26:34.4437,44:44.1477,37:39.7892,56:44.1903,42:46.4326,27:30.8575,50:37.7856,16:32.8382,40:42.3076,48:42.4684,39:40.9294,9:27.1004,52:41.8779,13:28.8153,43:45.5817,19:29.8946,59:39.3408,2:27.164,20:28.6226,18:25.3558,22:24.5776,35:36.691,57:36.8088,45:41.9304,38:37.4628,47:34.8615,14:34.7823,53:43.0237}
{0:35.9703,31:47.5933,34:51.4601,4:29.7918,32:43.2439,5:25.5886,8:35.3989,6:30.9889,30:31.0506,24:32.5121,29:33.9737,17:24.5743,51:48.4783,36:46.564,12:33.8374,23:32.4321,58:46.2786,21:24.2145,11:35.4378,10:35.1341,15:30.661,7:30.1572,28:32.0443,46:49.9864,33:43.6985,55:47.6047,54:46.4027,25:32.5327,3:24.0154,49:52.0524,41:51.9933,1:29.5733,26:28.7911,44:49.7345,37:45.7935,56:52.3653,42:49.794,27:29.6614,50:50.3393,16:32.1626,40:41.6021,48:50.7201,39:50.9886,9:27.3175,52:45.4201,13:27.5378,43:48.4757,19:32.6745,59:51.8075,2:25.2482,20:25.1957,18:25.3029,22:29.9291,35:44.6485,57:50.3004,45:43.1349,38:46.5441,47:42.2763,14:28.9916,53:43.0985}
{0:25.3705,31:26.3833,34:30.5754,4:33.3887,32:31.5662,5:29.7521,8:31.6988,6:29.2777,30:33.2455,24:24.7043,29:28.743,17:26.3862,51:47.321,36:32.2492,12:28.9523,23:27.6366,58:46.5789,21:32.7732,11:31.0293,10:25.1296,15:30.1135,7:28.5601,28:30.4814,46:52.3531,33:30.5894,55:49.8112,54:48.9776,25:27.341,3:28.8987,49:48.3224,41:45.1824,1:26.0271,26:30.7374,44:50.55,37:51.4732,56:51.5639,42:51.2077,27:26.2015,50:44.5687,16:32.9231,40:48.9291,48:44.8834,39:53.956,9:29.6133,52:49.0976,13:27.4651,43:47.3596,19:29.3262,59:50.1277,2:27.0336,20:24.2376,18:27.3164,22:33.0626,35:31.4538,57:50.2272,45:53.2968,38:52.1371,47:50.9613,14:27.8819,53:54.1341}
{0:32.6594,31:43.5851,34:39.9555,4:34.8073,32:41.7204,5:33.8411,8:30.4399,6:25.9011,30:40.2151,24:45.8626,29:48.1596,17:31.8232,51:45.3382,36:43.0894,12:32.1728,23:44.3996,58:39.3397,21:45.1847,11:31.4777,10:28.8796,15:31.4087,7:30.574,28:40.6007,46:40.4678,33:43.6284,55:42.641,54:47.42,25:47.8772,3:34.71,49:43.6141,41:44.0041,1:24.679,26:48.3971,44:44.6864,37:39.4554,56:40.0264,42:39.4462,27:40.0653,50:46.1648,16:24.2512,40:49.8256,48:39.087,39:41.6131,9:29.6056,52:48.1812,13:29.5263,43:45.9952,19:28.0479,59:45.9379,2:29.9574,20:46.8552,18:33.1522,22:43.6563,35:41.7604,57:46.2647,45:44.8248,38:41.6998,47:45.1025,14:30.6125,53:42.2231}
{0:27.5767,31:28.3479,34:32.6289,4:34.7841,32:32.2107,5:31.4854,8:30.7293,6:27.6336,30:30.8692,24:32.9609,29:30.4407,17:33.3784,51:46.425,36:27.8062,12:35.8101,23:34.429,58:48.8806,21:29.6526,11:32.3212,10:32.0796,15:25.2757,7:31.0741,28:35.7426,46:51.2249,33:35.9034,55:48.9302,54:49.3804,25:31.5247,3:34.5627,49:52.0449,41:45.4772,1:31.1718,26:31.9856,44:49.3499,37:34.2987,56:44.5988,42:44.3734,27:28.039,50:45.515,16:32.7112,40:42.7466,48:42.1531,39:49.5346,9:26.8812,52:49.7384,13:32.0131,43:49.5427,19:27.9906,59:49.5185,2:31.0906,20:31.6767,18:28.5161,22:28.7111,35:32.572,57:51.9282,45:43.6,38:27.8676,47:40.7658,14:31.6393,53:45.3068}
{0:32.4325,31:37.8082,34:36.127,4:28.9979,32:37.7814,5:34.0802,8:28.0045,6:34.3284,30:37.0814,24:28.7948,29:38.8613,17:26.763,51:41.9431,36:36.5692,12:26.9815,23:31.2239,58:39.7574,21:31.9885,11:25.0899,10:33.7019,15:33.4992,7:32.9216,28:39.3281,46:37.528,33:36.3782,55:35.9761,54:39.3097,25:29.1862,3:28.9857,49:43.4251,41:37.6796,1:27.1724,26:45.1232,44:40.3559,37:43.6484,56:35.8197,42:40.6156,27:37.6268,50:41.9442,16:28.7235,40:39.9505,48:39.6755,39:45.2892,9:25.3224,52:34.8502,13:34.2858,43:45.1727,19:25.5012,59:35.5248,2:29.1414,20:28.1966,18:33.862,22:24.4781,35:34.8866,57:43.3455,45:43.8419,38:34.1771,47:40.0346,14:35.6864,53:36.4256}
{0:35.812,31:55.6582,34:50.2818,4:26.6499,32:55.4592,5:32.2937,8:29.0838,6:30.4469,30:24.5696,24:25.5868,29:26.9991,17:32.1993,51:47.6602,36:46.361,12:26.6634,23:27.1067,58:53.9679,21:29.9864,11:27.3259,10:28.328,15:27.0622,7:35.0999,28:29.8663,46:53.0308,33:54.2151,55:49.4603,54:53.1835,25:26.7692,3:35.1929,49:48.0179,41:52.4899,1:33.6685,26:26.3693,44:55.6402,37:46.4939,56:45.3654,42:50.9857,27:33.0674,50:49.7379,16:29.7543,40:50.8333,48:45.7485,39:43.898,9:25.506,52:48.8941,13:25.5989,43:55.1537,19:24.4216,59:48.1523,2:24.2288,20:26.6612,18:34.6358,22:28.8627,35:46.4359,57:51.8751,45:45.5222,38:48.8786,47:46.9544,14:25.98,53:53.4615}
{0:26.8529,31:30.5233,34:32.9517,4:35.7051,32:35.0412,5:24.8784,8:33.4864,6:29.2443,30:27.565,24:30.0683,29:34.252,17:32.2962,51:44.659,36:51.2741,12:27.0303,23:26.9278,58:50.7493,21:26.7365,11:25.8064,10:25.5596,15:34.8249,7:25.7017,28:33.3979,46:48.4784,33:28.8719,55:53.5578,54:48.4784,25:26.7178,3:30.8821,49:43.3216,41:54.4854,1:26.518,26:30.9838,44:50.6447,37:50.731,56:50.8327,42:51.4647,27:28.3442,50:44.0696,16:33.8933,40:46.8193,48:50.0127,39:46.5788,9:31.4413,52:49.402,13:29.7756,43:51.6828,19:30.3929,59:43.7909,2:35.6005,20:30.5042,18:25.2757,22:33.789,35:34.8036,57:49.666,45:45.4107,38:51.2686,47:51.8378,14:31.5412,53:48.8178}
{0:32.8581,31:26.9341,34:44.966,4:25.1799,32:53.6177,5:32.4953,8:28.0177,6:28.436,30:31.7601,24:35.8087,29:29.9567,17:29.101,51:52.6424,36:53.9254,12:24.2501,23:24.1421,58:49.4703,21:24.3437,11:34.9722,10:30.1498,15:31.3793,7:27.2752,28:30.6338,46:47.4392,33:54.1013,55:53.4359,54:53.9489,25:26.5022,3:28.6479,49:44.522,41:53.8997,1:28.877,26:25.3499,44:52.6684,37:52.942,56:49.3972,42:50.561,27:26.1453,50:46.2057,16:28.147,40:46.0118,48:51.1441,39:48.2809,9:35.9317,52:49.8401,13:32.3425,43:55.25,19:29.5167,59:48.4689,2:26.7993,20:35.5292,18:25.4568,22:27.5389,35:51.2355,57:44.4442,45:45.4573,38:54.5339,47:47.3272,14:28.5528,53:54.3573}
{0:27.8106,31:45.1934,34:37.8626,4:26.9826,32:46.9825,5:27.1544,8:30.177,6:34.3736,30:46.1152,24:44.4972,29:40.2922,17:24.8273,51:48.2388,36:39.2709,12:30.5192,23:41.9277,58:44.445,21:28.3369,11:35.5571,10:32.1122,15:25.5846,7:33.2675,28:39.8577,46:43.1025,33:48.9556,55:49.5075,54:40.4372,25:38.6863,3:33.3079,49:47.775,41:46.2628,1:28.7548,26:44.8978,44:40.3002,37:38.4667,56:38.687,42:45.9477,27:46.4328,50:43.6467,16:31.3213,40:45.8996,48:46.009,39:41.0806,9:31.3139,52:40.6087,13:27.479,43:47.2436,19:26.8768,59:48.5282,2:32.4325,20:29.5542,18:26.3755,22:31.6778,35:42.1437,57:40.1133,45:46.225,38:37.7642,47:44.5637,14:31.665,53:42.6111}
{0:30.2372,31:48.8099,34:45.2732,4:35.9736,32:39.6874,5:28.1885,8:26.8247,6:24.6999,30:39.4241,24:27.0006,29:45.1252,17:28.1176,51:48.927,36:41.0681,12:32.6205,23:32.352,58:42.3582,21:28.551,11:31.9419,10:26.5683,15:32.8636,7:30.1447,28:37.9809,46:47.6348,33:40.3572,55:44.3544,54:47.5213,25:26.684,3:35.0265,49:38.9529,41:46.3565,1:26.8089,26:40.8199,44:45.6338,37:45.9228,56:44.6371,42:38.5428,27:45.1325,50:42.2278,16:24.2317,40:42.6035,48:38.758,39:45.0345,9:33.974,52:45.362,13:27.2334,43:43.0893,19:32.8933,59:38.849,2:25.4501,20:30.1039,18:27.7438,22:32.9539,35:42.7401,57:41.8709,45:44.7649,38:37.5487,47:42.7438,14:26.6275,53:42.7864}
{0:26.9627,31:40.8981,34:45.5563,4:25.5284,32:37.7613,5:35.5814,8:35.2975,6:27.8059,30:39.8637,24:28.4412,29:29.6298,17:32.9109,51:42.6861,36:40.72,12:33.3329,23:28.5073,58:43.1286,21:24.202,11:29.3739,10:32.3572,15:31.6657,7:24.4476,28:35.4646,46:39.6716,33:43.1305,55:44.1062,54:39.6103,25:27.1089,3:35.762,49:48.1503,41:46.4564,1:26.261,26:28.7588,44:45.6775,37:46.7248,56:45.1876,42:47.6274,27:33.6167,50:43.6376,16:28.5572,40:40.6044,48:44.0393,39:37.761,9:27.6777,52:44.0459,13:30.1223,43:36.9542,19:32.4449,59:43.252,2:26.1402,20:28.2796,18:32.5268,22:25.1611,35:41.6627,57:40.9113,45:37.2153,38:45.0495,47:40.5944,14:26.6517,53:40.9657}
{0:24.8901,31:47.0293,34:43.508,4:28.5524,32:46.2115,5:32.0491,8:34.3684,6:30.9827,30:28.9391,24:27.4581,29:33.392,17:27.4438,51:44.2913,36:44.7224,12:26.6458,23:33.5602,58:50.519,21:25.0521,11:27.862,10:32.0072,15:32.8353,7:33.6384,28:26.1662,46:46.9889,33:46.9963,55:40.7087,54:49.9494,25:27.1449,3:28.4496,49:43.4651,41:40.6794,1:30.173,26:26.85,44:46.621,37:46.1854,56:48.38,42:39.78,27:28.2355,50:39.6567,16:29.3647,40:46.2255,48:49.2965,39:46.1395,9:26.9969,52:40.2457,13:32.276,43:44.8848,19:27.4574,59:41.954,2:25.4446,20:32.9774,18:28.3405,22:25.337,35:45.7125,57:46.6415,45:43.7926,38:42.3381,47:41.6988,14:24.0782,53:48.3267}
{0:32.6605,31:40.2481,34:47.0292,4:33.2907,32:37.4422,5:32.7222,8:26.7013,6:30.4473,30:38.4425,24:29.375,29:45.2706,17:29.0114,51:44.4157,36:47.6091,12:30.1755,23:34.5418,58:39.8651,21:34.3875,11:34.7316,10:27.9531,15:25.4057,7:24.7186,28:44.957,46:39.7425,33:47.8926,55:42.7772,54:41.525,25:29.592,3:35.5399,49:39.8695,41:44.621,1:35.8832,26:34.8554,44:44.8219,37:37.2535,56:40.7307,42:47.3854,27:30.8799,50:41.952,16:26.5599,40:41.4482,48:40.5662,39:45.3415,9:26.4016,52:38.9699,13:32.789,43:47.9737,19:35.2733,59:39.1748,2:27.0002,20:24.0275,18:25.8361,22:32.0935,35:46.9385,57:47.28,45:36.8113,38:36.5917,47:43.9975,14:27.4823,53:43.4518}
{0:34.6571,31:44.2217,34:34.5965,4:24.6489,32:41.2788,5:29.567,8:30.8134,6:28.9964,30:43.9757,24:30.3687,29:38.4002,17:33.6054,51:36.5626,36:41.7936,12:34.9997,23:29.4708,58:42.7517,21:33.7434,11:29.1238,10:27.6553,15:26.5011,7:31.3936,28:37.4865,46:38.8493,33:36.9265,55:43.3216,54:43.8985,25:45.688,3:27.4603,49:36.1994,41:40.0163,1:28.7107,26:43.1226,44:36.7253,37:45.7479,56:45.8239,42:38.8434,27:45.3931,50:46.0034,16:34.6079,40:42.0742,48:36.621,39:44.0223,9:28.8359,52:42.6849,13:28.4977,43:43.2431,19:25.6312,59:45.208,2:30.0555,20:31.2243,18:26.4181,22:31.7171,35:41.9611,57:34.4452,45:38.3443,38:38.4479,47:40.2319,14:27.0997,53:43.9569}
{0:32.0656,31:25.1582,34:34.8172,4:25.5262,32:33.6369,5:35.4326,8:33.1735,6:25.474,30:26.3153,24:25.3918,29:30.657,17:35.1554,51:45.4658,36:43.7839,12:30.7657,23:31.5265,58:41.8292,21:35.6908,11:29.3827,10:34.6574,15:31.2566,7:25.4399,28:34.0427,46:40.91,33:27.5811,55:44.9707,54:42.813,25:30.5923,3:29.2149,49:39.4143,41:46.5267,1:24.564,26:34.3134,44:37.6869,37:40.953,56:46.7022,42:48.3521,27:32.0638,50:49.2573,16:26.0935,40:42.8783,48:43.4508,39:38.7846,9:34.8286,52:49.1673,13:26.9745,43:45.5014,19:27.5675,59:46.1418,2:30.0195,20:27.3428,18:29.7143,22:30.6055,35:30.6199,57:43.9624,45:45.4525,38:44.385,47:40.9952,14:27.7985,53:38.9843}
{0:27.1761,31:27.0876,34:51.0928,4:24.6379,32:24.1498,5:35.805,8:31.0973,6:27.2752,30:25.5071,24:27.1059,29:35.184,17:35.8876,51:44.001,36:46.6212,12:28.9358,23:30.0712,58:52.9796,21:32.1343,11:35.3416,10:24.3169,15:35.2072,7:35.1936,28:32.3873,46:54.4833,33:53.8965,55:43.6151,54:49.264,25:31.2787,3:30.8038,49:50.3389,41:46.7842,1:24.4825,26:33.1842,44:43.9155,37:43.9089,56:46.9964,42:52.963,27:25.5548,50:45.4251,16:32.7901,40:45.9256,48:51.8147,39:45.8614,9:30.3261,52:54.8597,13:29.3911,43:50.6481,19:30.7616,59:46.7431,2:35.3978,20:24.5765,18:24.4546,22:27.0075,35:49.3283,57:51.6462,45:54.3287,38:50.6745,47:43.9687,14:26.937,53:50.0396}
{0:33.0156,31:25.1982,34:30.5637,4:26.4809,32:29.6864,5:28.7603,8:25.4546,6:34.7992,30:31.1017,24:29.1018,29:32.243,17:26.9587,51:35.4758,36:32.8008,12:35.0717,23:30.0312,58:34.5816,21:27.4442,11:33.3446,10:25.0906,15:25.8758,7:35.7198,28:29.0772,46:40.0745,33:29.0882,55:38.9508,54:41.4248,25:33.8026,3:27.0193,49:42.2995,41:32.3669,1:28.9296,26:29.8674,44:35.4516,37:34.4138,56:32.2219,42:36.2914,27:29.6383,50:36.0009,16:25.1237,40:39.6915,48:32.2928,39:42.5437,9:32.2195,52:42.3564,13:31.264,43:41.1027,19:29.2527,59:42.8606,2:27.6873,20:25.4964,18:34.2983,22:24.9522,35:26.5709,57:33.6563,45:36.9561,38:35.3899,47:33.7183,14:30.6867,53:38.3207}
{0:32.1218,31:26.4262,34:46.1792,4:31.9481,32:30.9489,5:26.6745,8:34.6747,6:25.1744,30:29.1697,24:30.5828,29:29.2619,17:33.9021,51:51.2667,36:44.5914,12:33.1419,23:33.3112,58:51.4492,21:28.2968,11:25.9694,10:28.2671,15:26.9436,7:31.0543,28:29.9827,46:48.6411,33:43.9146,55:50.118,54:51.1782,25:34.067,3:32.8544,49:54.4699,41:52.6904,1:24.5578,26:31.2989,44:48.7733,37:44.9105,56:52.3955,42:50.7059,27:29.798,50:53.8534,16:26.8673,40:44.3042,48:43.421,39:52.4352,9:34.2465,52:51.5777,13:29.6298,43:43.6311,19:29.5149,59:47.7568,2:26.792,20:34.6967,18:28.2638,22:26.5162,35:54.5889,57:44.6442,45:48.5441,38:54.8254,47:53.5001,14:31.9,53:45.0195}
{0:33.3307,31:26.7883,34:26.4064,4:24.1528,32:31.5115,5:33.6413,8:33.2881,6:34.8113,30:24.5611,24:30.8281,29:31.055,17:32.7453,51:43.843,36:44.8308,12:25.8655,23:31.9158,58:47.8402,21:28.0464,11:30.6573,10:28.5186,15:32.3671,7:26.8559,28:25.2555,46:45.3188,33:25.99,55:44.2084,54:49.2113,25:26.3888,3:28.6112,49:52.9217,41:52.2736,1:35.2758,26:35.1932,44:52.2464,37:43.6351,56:41.5464,42:43.9616,27:26.9675,50:49.37,16:35.4136,40:49.9913,48:43.3858,39:43.3384,9:32.2566,52:46.3309,13:33.9524,43:51.9956,19:26.4189,59:52.2872,2:31.5926,20:33.2782,18:34.5161,22:30.343,35:26.167,57:47.8277,45:51.4731,38:47.5475,47:48.6363,14:26.7905,53:46.4506}
{0:34.8051,31:52.3695,34:47.9838,4:32.1853,32:48.611,5:30.1462,8:25.1134,6:26.5312,30:52.5608,24:55.4924,29:53.4238,17:24.6581,51:49.1277,36:49.8504,12:26.601,23:45.6215,58:44.3847,21:50.3733,11:32.9546,10:34.5814,15:31.5618,7:26.9892,28:46.3412,46:50.0421,33:44.7229,55:52.6626,54:46.2884,25:52.8374,3:34.0835,49:46.0732,41:48.6033,1:27.8044,26:55.5783,44:54.1917,37:47.9926,56:52.8689,42:55.4828,27:46.667,50:55.8739,16:31.7237,40:45.5928,48:49.1424,39:45.3486,9:24.9548,52:54.4373,13:30.2398,43:44.0755,19:28.9505,59:49.1167,2:28.9207,20:48.4057,18:24.1076,22:50.9208,35:50.6186,57:47.5138,45:55.3076,38:44.4001,47:52.8785,14:26.4512,53:50.5275}
{0:36.0272,31:37.5426,34:40.6213,4:29.0977,32:46.2515,5:31.2559,8:29.3445,6:25.3683,30:47.2647,24:30.5982,29:37.6178,17:24.2739,51:42.4082,36:42.0832,12:30.8648,23:31.2001,58:47.2753,21:25.9235,11:24.3793,10:33.8066,15:32.2657,7:30.6904,28:45.4605,46:43.5503,33:48.1188,55:47.8739,54:39.9644,25:31.9294,3:35.0614,49:41.6914,41:37.7809,1:34.7133,26:34.9218,44:37.4111,37:47.5445,56:39.0155,42:46.015,27:43.3703,50:44.2171,16:32.2107,40:40.7043,48:46.6793,39:48.1185,9:26.6477,52:46.9522,13:27.7196,43:40.448,19:31.7208,59:42.1996,2:25.8111,20:30.6265,18:31.5137,22:26.0278,35:45.1506,57:43.4416,45:46.8798,38:37.1379,47:38.2326,14:33.1757,53:40.8512}
{0:25.2838,31:28.0137,34:34.6445,4:30.3757,32:44.2822,5:31.0671,8:32.6928,6:34.9204,30:30.4704,24:25.9187,29:29.0908,17:29.9894,51:46.0001,36:34.3621,12:25.6617,23:28.0126,58:44.045,21:24.6235,11:28.3148,10:34.0266,15:29.1719,7:35.6537,28:30.553,46:44.2638,33:34.8087,55:37.0021,54:35.7778,25:31.4784,3:28.1448,49:34.6868,41:43.6741,1:26.4629,26:34.7963,44:42.2126,37:37.3054,56:45.6016,42:39.7401,27:25.6716,50:42.8897,16:34.4474,40:43.4721,48:38.9035,39:35.2137,9:25.7542,52:36.7274,13:34.5535,43:45.259,19:35.6141,59:38.6021,2:27.4063,20:27.7824,18:27.2796,22:33.4658,35:43.893,57:43.4765,45:44.8922,38:36.4861,47:41.7701,14:29.964,53:37.3388}
{0:30.3301,31:41.0405,34:45.3597,4:34.7404,32:46.067,5:26.4497,8:29.3956,6:30.5666,30:44.0381,24:29.1708,29:41.3794,17:31.8831,51:37.1252,36:47.7037,12:35.9941,23:28.5847,58:45.4721,21:34.9589,11:28.8991,10:33.5947,15:34.819,7:33.5191,28:41.6651,46:46.2877,33:40.06,55:37.232,54:39.5272,25:33.5484,3:33.5022,49:40.5668,41:45.7523,1:24.4719,26:46.3479,44:42.1399,37:42.8641,56:48.1785,42:41.4723,27:41.4863,50:37.6881,16:33.6891,40:43.4821,48:46.9681,39:44.1005,9:26.0542,52:46.0754,13:33.7071,43:41.4037,19:34.7158,59:39.5661,2:33.6891,20:25.8769,18:34.6692,22:28.1672,35:42.1891,57:41.1279,45:38.6157,38:41.1837,47:46.494,14:31.6305,53:40.3967}
{0:29.6376,31:40.8381,34:35.1517,4:27.1261,32:36.3161,5:35.1528,8:26.5015,6:28.6288,30:36.7744,24:34.2906,29:34.8531,17:34.6005,51:34.44,36:37.814,12:25.5596,23:33.8011,58:41.1998,21:27.6667,11:35.3838,10:25.6147,15:26.4901,7:33.6002,28:44.8694,46:39.9218,33:41.7682,55:38.9909,54:42.9881,25:36.6396,3:25.3631,49:45.2608,41:43.7328,1:25.134,26:42.2702,44:43.2727,37:36.0018,56:44.8213,42:42.6797,27:44.7802,50:43.933,16:28.5164,40:39.7529,48:37.6601,39:39.5869,9:30.0312,52:40.7576,13:35.6357,43:42.5049,19:24.4072,59:36.127,2:30.6742,20:32.0792,18:25.7994,22:24.1719,35:39.501,57:39.84,45:39.4338,38:34.5784,47:40.2329,14:24.6478,53:41.4186}
{0:32.8786,31:30.1627,34:40.3619,4:27.7177,32:26.5793,5:33.2414,8:33.8183,6:32.4101,30:36.0235,24:24.35,29:30.238,17:32.4457,51:50.1813,36:49.6889,12:30.6511,23:32.1798,58:41.7625,21:25.3815,11:26.2676,10:24.3147,15:35.4587,7:35.1984,28:27.475,46:45.9227,33:45.8353,55:40.3861,54:45.9135,25:25.5838,3:29.2795,49:45.3733,41:49.6309,1:33.1974,26:29.7246,44:46.7331,37:40.9803,56:41.3949,42:41.7852,27:32.1725,50:40.8297,16:31.5038,40:49.6628,48:46.1155,39:49.6764,9:35.5182,52:42.5487,13:30.387,43:47.4477,19:25.272,59:39.8614,2:28.414,20:32.1714,18:35.2388,22:30.9309,35:42.7209,57:40.8062,45:45.9286,38:42.0081,47:44.8735,14:24.1219,53:47.6082}
{0:28.2667,31:24.0709,34:30.7069,4:25.0818,32:35.4892,5:30.0679,8:34.2418,6:27.7827,30:29.1807,24:29.462,29:28.0853,17:35.9126,51:33.8502,36:30.0885,12:24.1234,23:35.3937,58:33.6115,21:28.2917,11:24.1425,10:32.9418,15:31.9576,7:29.1411,28:28.1231,46:40.8142,33:35.1018,55:40.7066,54:34.7554,25:29.4767,3:34.0361,49:37.3476,41:41.029,1:25.665,26:34.6134,44:43.5448,37:32.3833,56:35.5075,42:35.6368,27:33.8319,50:34.2362,16:26.767,40:38.7893,48:43.0546,39:33.7118,9:31.4065,52:40.7804,13:33.9087,43:37.0153,19:35.2399,59:41.4484,2:29.556,20:28.6013,18:33.9296,22:24.5317,35:31.1303,57:35.4627,45:39.0064,38:44.0156,47:36.9646,14:33.5304,53:42.7601}
{0:24.7892,31:41.9908,34:40.6663,4:34.3479,32:48.3599,5:24.163,8:31.1747,6:25.0234,30:25.0921,24:28.7566,29:27.9234,17:30.9059,51:42.2699,36:38.4729,12:26.6807,23:35.0342,58:49.712,21:24.5556,11:27.5602,10:35.3706,15:34.5524,7:35.4191,28:33.0817,46:38.9525,33:41.0699,55:50.2915,54:44.2177,25:24.9485,3:25.9492,49:42.343,41:40.6652,1:25.4748,26:31.9261,44:41.1338,37:43.5034,56:46.2491,42:42.7602,27:30.8615,50:50.0234,16:29.2927,40:42.3236,48:43.8501,39:47.1936,9:24.1781,52:47.6526,13:33.5275,43:49.762,19:26.4912,59:49.8056,2:25.4138,20:27.3428,18:24.964,22:27.5227,35:39.0806,57:44.2254,45:47.6471,38:39.3972,47:47.9585,14:32.0616,53:43.2982}
{0:33.0887,31:31.3826,34:47.6143,4:30.7043,32:34.2858,5:32.7332,8:27.6035,6:35.1503,30:27.9575,24:32.8728,29:29.5902,17:27.8466,51:47.6209,36:46.683,12:32.5301,23:32.1908,58:49.5194,21:26.7725,11:35.4855,10:32.1831,15:31.5464,7:27.8569,28:24.527,46:49.5495,33:41.0965,55:46.1138,54:40.4296,25:30.8571,3:35.2744,49:50.649,41:49.0876,1:28.7008,26:28.6053,44:39.3842,37:41.2698,56:40.7418,42:39.6643,27:30.7326,50:45.628,16:24.1807,40:39.7169,48:40.9224,39:43.1966,9:35.2035,52:41.0109,13:33.4607,43:43.6373,19:24.0591,59:47.4821,2:27.2363,20:28.2304,18:31.0293,22:25.2096,35:45.6232,57:46.8637,45:50.3402,38:48.9535,47:50.1635,14:33.7655,53:43.8811}
{0:35.4011,31:32.6833,34:34.9935,4:26.8617,32:41.2094,5:35.5832,8:25.8761,6:34.1018,30:43.3359,24:42.7304,29:43.0341,17:28.1867,51:39.5176,36:40.8884,12:31.113,23:34.0012,58:36.0466,21:26.294,11:25.3084,10:26.1717,15:28.8253,7:27.9917,28:33.6384,46:42.253,33:33.37,55:42.5181,54:42.3948,25:43.5453,3:27.9553,49:41.3273,41:32.7806,1:28.1367,26:35.2219,44:35.1528,37:41.4286,56:42.892,42:32.7721,27:38.9521,50:42.3639,16:30.8123,40:40.371,48:36.3077,39:32.0175,9:27.2785,52:39.9987,13:26.048,43:42.3268,19:31.488,59:34.6931,2:26.8173,20:33.7805,18:30.6812,22:28.0357,35:31.9206,57:42.8207,45:40.5201,38:39.8459,47:33.3226,14:28.4698,53:42.4175}
{0:35.9695,31:36.1178,34:42.6833,4:34.4507,32:36.2001,5:32.9682,8:31.5882,6:35.252,30:37.3921,24:42.8585,29:42.42,17:35.4874,51:44.9344,36:38.6127,12:32.1262,23:43.3987,58:40.198,21:42.0517,11:34.6732,10:30.5215,15:25.0308,7:27.7412,28:33.1819,46:42.9011,33:43.1725,55:43.3836,54:35.809,25:41.4307,3:29.2175,49:40.3662,41:43.2044,1:24.4447,26:42.983,44:37.7519,37:38.4467,56:35.3834,42:44.5106,27:40.0283,50:39.963,16:31.9554,40:35.9599,48:43.857,39:37.6164,9:35.8142,52:39.1518,13:31.7039,43:44.3233,19:27.421,59:36.9095,2:29.3614,20:36.5746,18:24.5189,22:35.5325,35:43.1214,57:41.4822,45:36.6055,38:35.5262,47:44.204,14:34.2866,53:34.0349}
{0:27.8698,31:29.0048,34:27.8092,4:24.4418,32:26.0113,5:25.5298,8:33.9109,6:24.52,30:30.0088,24:28.5098,29:31.7571,17:31.5181,51:48.9862,36:44.5098,12:30.9654,23:26.2867,58:45.3426,21:27.2047,11:26.1409,10:25.1604,15:26.2107,7:29.8498,28:29.7863,46:45.802,33:24.9893,55:37.6626,54:47.2507,25:27.269,3:26.5048,49:39.5373,41:39.3401,1:32.7655,26:25.2533,44:41.0506,37:39.9581,56:37.931,42:46.853,27:34.9255,50:44.7433,16:29.9761,40:46.9287,48:48.9796,39:44.5825,9:31.1373,52:46.9613,13:32.2022,43:42.5687,19:33.1651,59:40.0987,2:35.686,20:27.5999,18:33.7049,22:33.1467,35:32.6319,57:39.1274,45:45.7506,38:38.6607,47:37.6417,14:26.7832,53:44.7044}
{0:28.0556,31:41.083,34:33.9744,4:30.6514,32:41.1903,5:34.6395,8:31.7381,6:25.835,30:43.2584,24:42.8835,29:36.6478,17:34.7985,51:32.5852,36:43.0517,12:34.8664,23:39.0292,58:36.3558,21:31.6584,11:35.0783,10:34.4254,15:32.1111,7:25.5585,28:43.2056,46:42.9191,33:34.7823,55:33.5422,54:40.9013,25:42.3088,3:31.9173,49:36.2714,41:43.4208,1:35.4312,26:36.1395,44:33.3733,37:33.0009,56:31.6451,42:39.5154,27:33.1999,50:36.6099,16:33.5734,40:34.7166,48:33.1886,39:33.3307,9:34.7933,52:42.6118,13:35.0952,43:36.8721,19:26.5437,59:39.4757,2:34.5513,20:30.4502,18:24.5042,22:34.7202,35:36.8883,57:38.9811,45:43.1329,38:40.8157,47:38.2408,14:27.1383,53:33.8499}
{0:29.9625,31:39.3711,34:40.7926,4:32.2158,32:45.9965,5:25.1244,8:32.7193,6:34.1444,30:43.3316,24:34.5289,29:43.2482,17:28.5939,51:39.2973,36:42.3037,12:30.3316,23:34.7511,58:45.4835,21:33.2565,11:33.9087,10:24.6353,15:32.6175,7:33.0784,28:44.7079,46:44.5327,33:36.9012,55:45.7556,54:39.0935,25:36.9908,3:31.434,49:38.9363,41:36.621,1:28.9806,26:39.0993,44:41.805,37:45.5988,56:45.4119,42:42.325,27:38.8955,50:40.2741,16:24.9856,40:41.6938,48:42.9115,39:34.797,9:31.7707,52:41.0787,13:34.8866,43:44.0197,19:29.2883,59:42.5365,2:26.8434,20:30.2089,18:33.8136,22:24.9419,35:42.3735,57:44.384,45:36.4506,38:41.3284,47:37.7862,14:26.6047,53:45.3799}
{0:30.979,31:32.5665,34:29.7922,4:24.0577,32:25.5078,5:28.4918,8:29.361,6:25.6808,30:33.5988,24:25.9455,29:30.1186,17:30.7646,51:37.7403,36:32.0763,12:25.8915,23:32.691,58:44.8497,21:35.6504,11:28.5847,10:26.222,15:31.9026,7:34.0317,28:24.3026,46:43.0426,33:28.9652,55:36.6137,54:34.3333,25:28.1775,3:28.5326,49:40.3094,41:43.5674,1:27.428,26:33.7236,44:37.7583,37:27.4945,56:44.6793,42:42.0291,27:27.4522,50:42.6809,16:32.4549,40:45.2015,48:41.9377,39:39.9334,9:24.1014,52:44.0826,13:31.3558,43:35.9725,19:33.8958,59:34.7945,2:35.4591,20:26.8687,18:24.4374,22:29.3463,35:29.3353,57:36.0625,45:40.2312,38:25.1174,47:41.1397,14:33.2168,53:38.3147}
{0:32.8617,31:50.7235,34:46.3826,4:32.9183,32:50.9993,5:35.7459,8:25.7806,6:35.6089,30:45.7415,24:34.255,29:49.4831,17:33.482,51:47.0969,36:43.2102,12:29.5869,23:25.7054,58:40.4403,21:30.1781,11:28.0376,10:29.5799,15:25.2779,7:27.0046,28:49.4177,46:52.0991,33:45.1124,55:43.6303,54:52.3837,25:35.9633,3:25.3539,49:48.6502,41:49.9421,1:35.7793,26:40.6107,44:43.3869,37:49.182,56:43.1328,42:46.2714,27:44.1867,50:42.0061,16:24.585,40:49.4056,48:51.1848,39:46.7003,9:26.1369,52:50.5616,13:30.5016,43:45.9291,19:35.5762,59:47.0411,2:31.8504,20:31.4391,18:30.3492,22:30.1542,35:48.0711,57:43.8558,45:48.2731,38:51.0085,47:44.6185,14:28.1029,53:43.2686}
{0:26.7435,31:44.4218,34:35.3342,4:24.1954,32:40.8998,5:25.6382,8:35.2924,6:32.7982,30:36.4101,24:40.4308,29:40.6791,17:31.868,51:42.4311,36:40.8083,12:30.0305,23:39.1154,58:43.8761,21:44.4724,11:35.1172,10:25.3007,15:33.9722,7:31.2787,28:37.8361,46:45.103,33:37.7237,55:37.8416,54:36.5592,25:34.852,3:26.8544,49:43.4512,41:34.7488,1:28.0269,26:36.6202,44:33.9094,37:41.6001,56:34.6188,42:36.2948,27:33.5363,50:35.8622,16:29.8836,40:35.8252,48:42.0051,39:41.5395,9:33.388,52:34.8619,13:35.1341,43:43.2804,19:28.9314,59:42.2834,2:34.5234,20:28.3016,18:28.0548,22:43.3164,35:39.1456,57:39.2583,45:38.3046,38:37.0833,47:40.0508,14:35.9747,53:40.2817}
{0:29.126,31:46.1323,34:40.6057,4:35.3552,32:44.142,5:32.5456,8:27.5077,6:32.5742,30:45.0659,24:41.4135,29:48.0239,17:29.4312,51:40.6409,36:42.437,12:35.075,23:50.9242,58:50.0711,21:41.3258,11:36.0084,10:26.9859,15:29.6203,7:26.7993,28:48.2446,46:51.2286,33:46.9501,55:43.7057,54:40.3042,25:42.3331,3:35.238,49:43.6069,41:44.8503,1:28.2653,26:50.5125,44:48.3874,37:42.2034,56:48.4873,42:42.1722,27:46.4088,50:41.9405,16:32.5301,40:43.5555,48:40.0908,39:47.8065,9:25.8706,52:44.5121,13:28.4702,43:43.8071,19:25.2037,59:50.9197,2:32.4141,20:25.131,18:35.863,22:44.0285,35:45.5429,57:45.4893,45:41.3456,38:49.0131,47:46.7915,14:31.958,53:47.6397}
{0:28.0805,31:29.559,34:31.9782,4:34.6633,32:35.7661,5:34.0067,8:27.3975,6:33.4063,30:32.5158,24:26.355,29:31.3785,17:25.8097,51:45.6747,36:44.2822,12:32.6172,23:24.849,58:40.4576,21:33.5106,11:24.2464,10:27.5051,15:27.8407,7:34.6395,28:28.8631,46:44.6832,33:35.0467,55:43.864,54:42.9029,25:24.0536,3:24.2703,49:39.8848,41:37.4406,1:28.3787,26:30.8578,44:46.1595,37:37.0355,56:44.5955,42:39.2998,27:33.208,50:35.8582,16:30.592,40:43.7222,48:35.6074,39:38.3865,9:33.374,52:40.7991,13:29.249,43:42.0866,19:25.3628,59:44.6715,2:24.3948,20:32.6219,18:24.4469,22:27.3997,35:36.2798,57:35.6401,45:46.5068,38:36.5721,47:44.0314,14:35.8553,53:42.6621}
{0:25.4781,31:48.8605,34:39.7997,4:33.3975,32:40.919,5:31.8119,8:32.7428,6:24.5835,30:44.0774,24:41.8514,29:45.081,17:24.7917,51:48.4485,36:39.7468,12:25.1997,23:44.3191,58:48.2351,21:37.6878,11:31.8482,10:33.2249,15:25.5427,7:26.9884,28:44.7091,46:38.1333,33:40.4372,55:46.1596,54:41.7136,25:47.4658,3:29.2685,49:41.4019,41:38.0646,1:24.1241,26:37.888,44:39.2937,37:41.9589,56:47.1397,42:47.9971,27:45.1464,50:46.9579,16:26.4431,40:44.3734,48:46.5518,39:49.4583,9:32.9715,52:42.1176,13:25.113,43:43.6236,19:31.9984,59:44.6929,2:24.3562,20:48.4216,18:27.1772,22:38.2427,35:38.3198,57:48.9952,45:42.4911,38:41.5242,47:41.7493,14:31.9977,53:47.2234}
{0:31.6995,31:45.2978,34:46.9095,4:26.4747,32:38.5872,5:34.5348,8:35.3831,6:35.758,30:37.9963,24:46.2239,29:45.2603,17:31.3047,51:44.831,36:45.0991,12:32.5008,23:34.5315,58:46.5041,21:26.3994,11:33.3931,10:31.4138,15:33.1944,7:27.7871,28:41.7412,46:43.7231,33:43.8252,55:46.4655,54:41.7581,25:44.6408,3:32.196,49:37.7117,41:45.1127,1:31.7017,26:38.8571,44:46.0432,37:44.9177,56:45.058,42:41.5855,27:41.5496,50:36.5062,16:35.0217,40:43.2351,48:41.782,39:42.6461,9:34.8884,52:46.1718,13:26.7582,43:36.8187,19:28.9354,59:42.0677,2:33.4405,20:28.9766,18:35.7227,22:33.19,35:40.8585,57:45.0213,45:36.5528,38:41.2789,47:40.5151,14:31.0495,53:40.424}
{0:28.5458,31:34.5549,34:33.9281,4:24.036,32:44.8517,5:29.288,8:29.1499,6:34.1768,30:44.0329,24:39.6486,29:42.6429,17:35.1653,51:43.4148,36:42.879,12:33.4856,23:38.67,58:40.0173,21:31.835,11:24.2637,10:34.089,15:28.6556,7:32.9194,28:40.1407,46:34.942,33:44.2051,55:44.7621,54:43.1159,25:43.9818,3:26.637,49:43.4875,41:41.91,1:34.6552,26:41.249,44:40.8953,37:34.0265,56:42.5783,42:37.0953,27:36.7384,50:33.5058,16:25.4303,40:41.3764,48:41.5853,39:38.6781,9:31.2093,52:34.0019,13:35.7404,43:35.2754,19:34.9027,59:33.9787,2:30.6474,20:26.3957,18:33.5341,22:34.5296,35:40.346,57:42.4564,45:43.1045,38:34.4683,47:35.4021,14:25.7182,53:42.47}
{0:24.0118,31:49.8867,34:50.974,4:34.9487,32:50.5782,5:31.9286,8:29.155,6:24.6452,30:43.0571,24:35.1499,29:46.6405,17:30.0441,51:44.9094,36:51.3332,12:29.8428,23:31.0693,58:50.5822,21:30.7186,11:31.0088,10:29.2957,15:33.8319,7:29.5245,28:26.063,46:53.1953,33:46.9548,55:44.7405,54:44.667,25:31.0745,3:31.2416,49:45.5179,41:51.2693,1:28.577,26:31.557,44:45.0912,37:50.1617,56:45.862,42:44.5389,27:33.0879,50:44.1492,16:31.4204,40:50.5741,48:46.0797,39:46.9085,9:31.2151,52:48.0756,13:27.8518,43:53.557,19:35.7492,59:44.4911,2:29.884,20:25.3962,18:30.8336,22:27.3468,35:51.8502,57:52.52,45:53.4953,38:44.9858,47:51.552,14:24.9742,53:42.0183}
{0:31.7502,31:40.2453,34:43.1636,4:34.4834,32:44.9975,5:31.676,8:32.5654,6:34.9439,30:50.3262,24:41.5372,29:48.4927,17:27.5033,51:48.2151,36:42.0964,12:33.8687,23:47.3782,58:50.4856,21:49.8462,11:30.1972,10:35.2167,15:24.2431,7:28.4224,28:40.2339,46:41.1112,33:50.4257,55:40.7851,54:48.099,25:46.4271,3:31.8552,49:44.7922,41:46.3437,1:24.3823,26:52.1909,44:43.269,37:42.2154,56:50.0993,42:51.8884,27:44.0508,50:50.7132,16:34.0115,40:45.3551,48:41.2816,39:48.9473,9:28.9806,52:50.6853,13:34.1661,43:42.1974,19:29.4426,59:42.7567,2:28.5432,20:43.8283,18:26.0348,22:42.7119,35:44.2223,57:50.0684,45:43.298,38:51.9067,47:49.1247,14:25.7711,53:50.3508}
{0:34.4507,31:28.7408,34:28.7856,4:32.3223,32:30.6797,5:32.2209,8:26.9906,6:27.2319,30:25.001,24:34.7639,29:34.0064,17:34.1426,51:42.3549,36:40.4714,12:34.0537,23:33.6021,58:44.7275,21:31.3874,11:29.7485,10:27.0435,15:29.6115,7:33.1621,28:35.01,46:42.9006,33:29.0482,55:42.1129,54:49.2304,25:30.6863,3:25.2067,49:44.5131,41:49.2748,1:34.0372,26:25.2056,44:45.8127,37:49.0816,56:45.1142,42:48.945,27:26.9091,50:40.9466,16:31.0161,40:45.6819,48:47.9748,39:50.2479,9:27.0461,52:44.9636,13:24.6246,43:48.1001,19:34.6398,59:45.6434,2:25.6418,20:28.1044,18:34.5811,22:26.294,35:28.8697,57:47.774,45:43.9637,38:40.8508,47:49.8385,14:34.5256,53:49.674}
{0:25.535,31:43.8126,34:42.4282,4:30.0958,32:43.6767,5:24.5192,8:35.1334,6:34.3383,30:43.4938,24:31.2511,29:34.7533,17:24.325,51:40.1334,36:40.8965,12:29.4437,23:34.3971,58:40.8168,21:31.0102,11:32.7123,10:25.495,15:27.3061,7:32.7064,28:35.7958,46:41.9394,33:34.9424,55:34.1984,54:39.1746,25:34.3027,3:24.8351,49:41.8777,41:40.8847,1:29.2788,26:40.006,44:38.8375,37:45.5124,56:42.0437,42:44.8838,27:39.6839,50:42.5585,16:28.9402,40:35.9589,48:38.9242,39:38.3168,9:26.886,52:42.0404,13:27.9028,43:41.8406,19:24.1072,59:37.1365,2:26.5951,20:30.7484,18:24.6368,22:26.0902,35:40.0655,57:40.7867,45:46.0706,38:39.309,47:43.1292,14:25.4079,53:41.892}
{0:32.9495,31:33.1889,34:31.0069,4:28.4496,32:26.489,5:33.9766,8:27.5635,6:29.6251,30:31.7428,24:26.5019,29:34.4048,17:33.0009,51:45.9047,36:25.7693,12:26.8147,23:34.5003,58:41.0427,21:26.8746,11:34.1176,10:31.0429,15:25.5353,7:32.6844,28:33.9821,46:43.8717,33:29.3665,55:38.6829,54:44.0719,25:30.9753,3:31.0796,49:35.9115,41:46.5014,1:26.6194,26:28.8991,44:35.2957,37:31.0741,56:41.3159,42:37.835,27:28.4459,50:36.4892,16:27.0696,40:46.1412,48:35.4529,39:42.0165,9:30.3261,52:35.465,13:32.283,43:36.8556,19:31.3036,59:40.5231,2:29.0166,20:27.8092,18:32.8349,22:32.5959,35:29.1991,57:43.8824,45:39.0332,38:45.2719,47:43.8064,14:31.0462,53:46.1176}
{0:35.0665,31:53.1849,34:47.2448,4:26.1324,32:49.7852,5:26.5022,8:26.7909,6:29.603,30:46.4751,24:32.1563,29:26.7721,17:30.7543,51:52.4531,36:48.1724,12:29.9317,23:33.0681,58:45.1487,21:33.4607,11:28.1125,10:35.054,15:30.6702,7:32.5312,28:35.7132,46:48.6582,33:51.716,55:46.3561,54:47.153,25:32.9124,3:27.4214,49:54.7159,41:55.4283,1:24.1087,26:29.8333,44:54.717,37:51.9151,56:44.3742,42:53.2253,27:31.6742,50:55.461,16:29.1484,40:53.1063,48:54.6127,39:50.1877,9:29.9842,52:50.6023,13:34.0108,43:45.8688,19:30.4513,59:46.4472,2:27.9304,20:31.8501,18:26.7479,22:31.6257,35:48.9347,57:49.8957,45:46.68,38:47.3366,47:51.0646,14:33.3237,53:50.1337}
{0:27.6766,31:41.6686,34:33.0,4:27.6906,32:37.6707,5:29.7734,8:25.6602,6:31.1013,30:33.7157,24:40.8589,29:36.6601,17:26.7696,51:42.4376,36:39.2486,12:25.7164,23:39.4238,58:38.6431,21:26.4494,11:26.7824,10:30.1719,15:35.801,7:33.0556,28:38.2241,46:33.0397,33:40.6999,55:41.1416,54:34.4671,25:34.9569,3:28.7287,49:38.3768,41:39.8248,1:32.6936,26:35.1424,44:39.1469,37:43.0556,56:36.2789,42:34.5251,27:39.7613,50:35.9201,16:29.3452,40:31.9689,48:42.8745,39:37.801,9:33.6832,52:33.1693,13:35.1135,43:33.5927,19:33.6186,59:42.93,2:30.8854,20:30.2009,18:27.0644,22:37.3387,35:38.2057,57:35.1336,45:43.1129,38:38.6251,47:41.142,14:28.7202,53:37.0269}
{0:27.1019,31:52.5905,34:54.8607,4:34.4551,32:47.5204,5:25.2298,8:28.0585,6:30.4671,30:48.2743,24:55.1133,29:50.9887,17:30.6757,51:53.5663,36:47.6683,12:30.2963,23:52.8997,58:53.6522,21:49.2988,11:32.5676,10:30.2758,15:30.2949,7:26.9304,28:53.759,46:50.58,33:43.8823,55:50.1258,54:52.1032,25:52.2784,3:32.4152,49:47.0786,41:44.7713,1:25.8456,26:54.7406,44:51.8065,37:51.7011,56:45.4746,42:51.7761,27:43.3359,50:43.9374,16:30.3474,40:44.9572,48:47.4913,39:51.4066,9:26.1332,52:44.8095,13:27.4276,43:53.5762,19:25.4924,59:50.757,2:31.351,20:53.2196,18:29.2869,22:44.2319,35:52.7958,57:49.5265,45:52.6085,38:47.1601,47:52.8502,14:34.6391,53:50.7309}
{0:27.2392,31:26.1163,34:29.2226,4:29.6328,32:32.1963,5:32.6164,8:28.4808,6:35.5531,30:27.692,24:29.3456,29:32.5797,17:34.7382,51:54.1347,36:49.2404,12:27.0218,23:34.6325,58:43.6561,21:25.7347,11:35.2773,10:31.2236,15:30.2508,7:32.2492,28:24.0496,46:45.8058,33:25.6389,55:50.063,54:52.9691,25:35.2406,3:32.3587,49:52.505,41:53.6669,1:27.7724,26:30.5002,44:46.6721,37:49.2224,56:50.2961,42:49.7618,27:26.6583,50:51.335,16:30.7293,40:43.608,48:48.8717,39:55.1479,9:30.1968,52:52.6776,13:30.336,43:46.6768,19:27.8709,59:44.6266,2:34.5241,20:29.5054,18:31.7333,22:29.5751,35:27.9065,57:54.8838,45:48.9349,38:51.9417,47:55.1155,14:35.7422,53:51.8704}
{0:27.0784,31:48.0686,34:45.2417,4:35.8245,32:51.8642,5:28.754,8:29.9721,6:35.4242,30:42.7685,24:51.9483,29:48.3668,17:27.5672,51:44.5414,36:50.0545,12:24.7322,23:32.4086,58:50.9891,21:30.6063,11:32.828,10:32.0024,15:34.1569,7:30.6882,28:52.0294,46:41.7785,33:43.8033,55:49.6675,54:46.8366,25:48.116,3:32.3616,49:44.8951,41:48.5669,1:35.7051,26:47.7043,44:48.6418,37:47.206,56:45.097,42:50.3295,27:48.7024,50:44.4786,16:25.0062,40:53.0797,48:42.5831,39:50.8708,9:26.3083,52:46.9423,13:35.881,43:42.5247,19:27.4089,59:51.5094,2:35.2744,20:35.816,18:25.0088,22:32.3744,35:45.1811,57:47.9749,45:42.4105,38:45.1786,47:44.5356,14:29.5531,53:52.9298}
{0:30.9214,31:52.6313,34:46.5553,4:26.6403,32:42.2699,5:27.6402,8:31.5449,6:26.4196,30:45.6211,24:34.2517,29:46.3736,17:33.1482,51:51.9817,36:52.2502,12:33.2521,23:24.0525,58:44.1765,21:29.3882,11:26.0447,10:31.5552,15:33.4203,7:28.7801,28:51.3622,46:51.4199,33:44.7721,55:48.3055,54:50.9043,25:32.3755,3:30.6632,49:49.1674,41:44.7196,1:30.4733,26:45.8833,44:43.1163,37:50.0167,56:42.441,42:48.4961,27:50.1706,50:46.321,16:33.475,40:45.1654,48:52.3702,39:52.8014,9:30.0382,52:50.0435,13:34.0949,43:46.1995,19:29.7407,59:42.1626,2:24.9228,20:34.5172,18:30.7315,22:27.4842,35:44.1651,57:41.4569,45:48.9551,38:42.7054,47:45.0857,14:34.8363,53:45.6457}
{0:35.4279,31:40.0775,34:36.7281,4:30.0577,32:44.0637,5:27.9109,8:31.8093,6:34.9207,30:39.0769,24:43.9682,29:35.8865,17:27.3546,51:40.5446,36:38.9127,12:24.0617,23:41.9019,58:36.478,21:29.086,11:28.0581,10:30.8986,15:27.2525,7:33.1853,28:43.792,46:38.8844,33:45.4474,55:41.4289,54:35.1024,25:45.7217,3:30.4061,49:36.7413,41:42.4149,1:29.9875,26:35.7039,44:40.6302,37:38.0861,56:36.7054,42:44.6832,27:40.7752,50:38.5826,16:33.6391,40:34.6985,48:36.8453,39:37.68,9:28.136,52:42.1615,13:32.0454,43:34.8057,19:34.479,59:38.7963,2:27.5962,20:31.4145,18:28.3758,22:44.4048,35:36.3936,57:38.0931,45:43.2463,38:40.6974,47:36.7593,14:30.4678,53:39.2373}
{0:24.0228,31:49.9739,34:45.5316,4:29.4396,32:47.19,5:32.2253,8:27.5191,6:25.4905,30:43.4733,24:44.716,29:41.5418,17:35.6387,51:44.413,36:41.8043,12:28.3372,23:51.6884,58:46.8925,21:42.9868,11:28.5374,10:35.3776,15:26.8485,7:30.2923,28:42.1943,46:40.818,33:43.1256,55:50.6183,54:48.209,25:47.0045,3:29.9354,49:50.8346,41:43.2919,1:24.748,26:43.1627,44:48.112,37:50.1575,56:50.2875,42:43.011,27:41.7577,50:40.696,16:27.9032,40:47.678,48:51.4145,39:49.9694,9:26.4582,52:41.6464,13:28.1551,43:51.3557,19:35.1932,59:41.0563,2:32.1244,20:33.9267,18:35.3592,22:51.3531,35:46.3303,57:50.4659,45:46.0967,38:45.5371,47:43.8046,14:33.3681,53:41.3787}
{0:24.0092,31:35.1411,34:30.0389,4:29.805,32:32.9187,5:31.5368,8:24.3121,6:24.5358,30:27.5844,24:33.916,29:35.0004,17:35.108,51:44.9478,36:26.3601,12:26.525,23:30.7135,58:43.0665,21:32.3293,11:27.0365,10:25.9863,15:27.721,7:35.5788,28:35.5917,46:40.8988,33:31.0686,55:43.4158,54:47.7618,25:30.6687,3:29.8351,49:45.073,41:49.1874,1:35.4598,26:29.9949,44:41.6208,37:43.8293,56:39.5706,42:43.2222,27:31.2482,50:39.4557,16:31.2012,40:40.0311,48:41.464,39:46.2228,9:34.6339,52:43.7195,13:25.6833,43:46.9414,19:28.4415,59:48.3336,2:34.8025,20:24.1326,18:35.8289,22:27.6836,35:34.9538,57:38.9522,45:47.8676,38:42.1937,47:48.5293,14:24.7311,53:40.1057}
{0:33.5767,31:49.2421,34:42.0314,4:25.6077,32:38.8866,5:32.5177,8:31.0517,6:29.1514,30:44.7668,24:29.317,29:28.5818,17:30.1638,51:38.4279,36:44.0364,12:33.8246,23:24.2387,58:45.6952,21:28.9993,11:31.7472,10:33.5965,15:33.323,7:32.7472,28:30.1469,46:46.817,33:47.0587,55:38.1327,54:44.9064,25:33.937,3:31.3058,49:42.316,41:39.0918,1:25.8743,26:34.8414,44:39.6702,37:48.944,56:49.3384,42:38.3071,27:35.585,50:41.1824,16:26.966,40:40.8358,48:38.7691,39:44.7386,9:34.0967,52:40.1667,13:24.4146,43:47.4222,19:27.3285,59:47.5078,2:28.0093,20:34.4323,18:31.4039,22:26.211,35:43.9516,57:44.6126,45:46.9617,38:40.8938,47:42.5044,14:24.7352,53:39.242}
{0:34.8447,31:35.4777,34:42.7802,4:26.1468,32:37.9307,5:29.7911,8:24.8284,6:29.2707,30:37.602,24:25.7311,29:40.1594,17:35.122,51:36.9873,36:44.4474,12:30.3356,23:30.5666,58:36.0718,21:28.1635,11:27.4273,10:25.0389,15:26.1365,7:30.5637,28:38.0989,46:34.6136,33:39.9754,55:39.1106,54:39.8575,25:43.6075,3:28.9971,49:43.1048,41:41.1027,1:30.1876,26:37.5767,44:41.5291,37:36.9704,56:40.5325,42:37.9535,27:41.2335,50:42.6972,16:31.4413,40:39.0786,48:36.0729,39:38.1437,9:25.5056,52:35.8732,13:30.4921,43:40.5512,19:32.8739,59:40.2108,2:32.9132,20:29.7687,18:35.9115,22:33.984,35:34.4781,57:38.0603,45:41.6069,38:41.1964,47:38.9692,14:24.4528,53:36.5962}
{0:28.9736,31:27.2745,34:25.6918,4:34.5363,32:29.8847,5:27.6109,8:24.4755,6:30.7609,30:24.7847,24:26.7046,29:26.2731,17:33.7298,51:49.0969,36:25.243,12:24.6647,23:32.1842,58:54.5619,21:27.2268,11:31.8332,10:29.5513,15:33.7126,7:29.9993,28:32.619,46:54.4837,33:33.5018,55:55.9276,54:49.1245,25:32.4152,3:31.9753,49:46.2712,41:55.0911,1:34.1323,26:24.8777,44:49.4274,37:34.0479,56:52.5282,42:46.2833,27:32.3315,50:50.651,16:25.4384,40:48.9567,48:53.3328,39:45.9289,9:27.7567,52:45.2496,13:33.2672,43:52.6564,19:32.796,59:55.1105,2:27.6649,20:34.3875,18:30.0275,22:28.1059,35:30.123,57:53.5715,45:53.978,38:33.1008,47:44.3312,14:33.6362,53:45.6968}
{0:24.3055,31:35.7378,34:33.4662,4:32.4303,32:24.9423,5:35.6254,8:24.1072,6:25.7781,30:31.5144,24:34.2418,29:29.3838,17:26.2022,51:46.2116,36:37.8559,12:25.9514,23:34.6795,58:46.2156,21:34.0772,11:33.8969,10:32.0212,15:27.1977,7:35.6526,28:31.8541,46:45.1749,33:28.7599,55:47.6694,54:41.1623,25:27.9454,3:30.2574,49:46.2883,41:45.7276,1:30.4315,26:34.8976,44:39.0071,37:37.7406,56:46.5296,42:45.8833,27:27.7993,50:39.0475,16:32.5228,40:44.1908,48:48.0286,39:41.4495,9:24.997,52:37.7182,13:31.6356,43:43.287,19:30.6727,59:45.6798,2:34.2447,20:33.9608,18:34.2678,22:35.2971,35:42.2122,57:42.7436,45:41.1381,38:39.5836,47:48.8196,14:30.0463,53:38.013}
{0:35.6361,31:31.0811,34:25.9565,4:31.3716,32:32.7402,5:33.6116,8:24.0536,6:31.0205,30:24.7789,24:33.493,29:28.024,17:26.9165,51:40.2977,36:43.6386,12:30.5912,23:28.6486,58:43.9401,21:30.5262,11:25.9007,10:30.5574,15:34.9013,7:35.3324,28:26.7182,46:44.0051,33:25.5203,55:37.6434,54:42.833,25:34.5737,3:25.9995,49:44.7814,41:42.6339,1:35.2266,26:25.9191,44:36.7345,37:45.6793,56:39.3297,42:44.0209,27:34.0835,50:43.2799,16:35.2847,40:45.149,48:45.3716,39:47.0872,9:24.943,52:45.3995,13:28.7026,43:37.4576,19:34.8715,59:41.7559,2:26.4512,20:30.3757,18:34.0695,22:26.6249,35:45.2669,57:36.2876,45:44.6232,38:46.3675,47:42.6104,14:26.7435,53:42.3269}
{0:28.4533,31:37.7353,34:37.2763,4:29.9824,32:47.3121,5:35.5553,8:35.3978,6:28.3684,30:35.8607,24:33.5194,29:38.512,17:33.5694,51:40.7748,36:41.7799,12:32.3678,23:28.801,58:39.8854,21:32.4813,11:33.4849,10:28.7287,15:34.0067,7:32.1846,28:46.4223,46:41.5739,33:36.24,55:41.4244,54:45.0724,25:24.242,3:29.5131,49:36.2441,41:41.564,1:32.3271,26:29.8447,44:46.1689,37:46.0609,56:42.6263,42:36.5272,27:24.3008,50:37.3659,16:26.5929,40:46.379,48:43.1739,39:39.1499,9:31.3088,52:40.5585,13:25.7773,43:46.7616,19:32.0704,59:44.3064,2:32.2422,20:27.3013,18:28.4643,22:35.314,35:38.2458,57:42.9513,45:37.5165,38:36.3425,47:44.0978,14:28.952,53:46.5167}
{0:29.6713,31:34.2578,34:39.9302,4:35.8678,32:40.9687,5:26.1497,8:27.233,6:28.4356,30:35.8511,24:28.5183,29:39.8986,17:29.527,51:42.7875,36:39.1837,12:33.1518,23:33.9087,58:43.2771,21:24.2574,11:29.7815,10:27.4431,15:35.7433,7:30.3562,28:39.8024,46:37.6362,33:42.6278,55:42.4508,54:33.6339,25:27.0248,3:34.3365,49:44.2223,41:39.4257,1:32.0359,26:25.9955,44:41.8952,37:37.4228,56:40.296,42:42.5646,27:34.606,50:35.9224,16:29.8535,40:37.4471,48:37.8128,39:38.3034,9:32.0171,52:38.0526,13:33.0993,43:38.1609,19:25.5945,59:42.3473,2:35.61,20:27.7526,18:26.1805,22:31.3249,35:36.76,57:43.7607,45:36.4145,38:43.3479,47:43.7155,14:29.8436,53:41.1923}
{0:27.9542,31:40.5073,34:36.2031,4:30.4197,32:46.0872,5:35.8784,8:33.3975,6:33.0931,30:38.0172,24:35.1649,29:42.8807,17:24.7998,51:42.249,36:42.8575,12:31.1509,23:27.1911,58:40.0729,21:26.9822,11:33.1324,10:35.9798,15:25.6903,7:29.2971,28:41.0596,46:36.0368,33:41.8969,55:45.1655,54:47.0346,25:35.9802,3:31.0212,49:36.5729,41:46.8844,1:24.5607,26:31.5398,44:46.3718,37:40.056,56:47.114,42:42.4176,27:32.742,50:45.7351,16:29.3067,40:41.1782,48:36.2623,39:38.1751,9:35.8076,52:40.4673,13:30.9629,43:46.0141,19:25.0638,59:44.3308,2:34.1419,20:32.2052,18:30.0286,22:33.2668,35:43.9118,57:36.4448,45:36.574,38:36.007,47:37.0466,14:24.6555,53:41.6317}
{0:29.7848,31:28.2943,34:52.7752,4:30.3591,32:52.7014,5:34.5532,8:28.5473,6:24.0925,30:27.5756,24:27.0747,29:35.447,17:31.2107,51:52.181,36:47.7843,12:32.5401,23:35.6879,58:52.8831,21:24.4014,11:35.1995,10:26.3719,15:29.0471,7:27.3876,28:35.8472,46:52.6224,33:50.8601,55:43.674,54:46.3654,25:34.5025,3:31.4112,49:45.455,41:51.5891,1:26.0906,26:33.8624,44:42.128,37:50.7937,56:47.2882,42:53.7836,27:29.5072,50:43.2613,16:32.6877,40:45.3192,48:49.3086,39:49.5058,9:25.0657,52:44.9336,13:29.5377,43:43.9707,19:28.129,59:44.2851,2:28.0273,20:32.2272,18:31.0627,22:33.3153,35:53.9022,57:47.2346,45:53.8317,38:44.1481,47:43.9399,14:28.4019,53:42.8713}
{0:28.1088,31:45.1237,34:46.7248,4:30.0584,32:48.0034,5:35.4896,8:33.8558,6:25.586,30:41.3663,24:24.1752,29:49.8557,17:24.2468,51:40.5848,36:49.8083,12:30.9786,23:25.3066,58:40.0392,21:26.7648,11:29.6475,10:32.8775,15:33.2888,7:32.8786,28:42.9483,46:45.7006,33:47.5723,55:44.9636,54:45.2827,25:46.0895,3:30.0073,49:49.5457,41:38.6026,1:29.5571,26:47.833,44:45.7259,37:44.8945,56:49.39,42:42.7749,27:48.2792,50:46.0858,16:31.1582,40:50.1032,48:50.3209,39:42.5946,9:29.3816,52:41.9979,13:29.8715,43:46.8331,19:27.4981,59:48.1554,2:32.1706,20:29.4011,18:32.5481,22:33.1823,35:42.3824,57:41.9612,45:44.0426,38:47.9839,47:39.9437,14:24.928,53:48.6152}
{0:26.5753,31:42.5945,34:41.0114,4:26.8485,32:42.4553,5:29.3151,8:33.1008,6:32.8493,30:36.2871,24:45.8539,29:40.9758,17:26.3605,51:36.1748,36:36.6202,12:26.6473,23:42.0338,58:38.8118,21:34.5058,11:32.2948,10:34.8201,15:27.1801,7:28.3589,28:44.4009,46:35.2299,33:42.1237,55:37.6135,54:45.432,25:41.773,3:26.5386,49:35.0782,41:40.266,1:29.6302,26:39.743,44:45.6589,37:40.1606,56:38.121,42:36.4564,27:34.967,50:46.035,16:27.1742,40:38.6689,48:43.7215,39:43.1574,9:34.2932,52:44.4045,13:29.1536,43:34.501,19:34.822,59:35.0702,2:32.9267,20:29.6185,18:33.3329,22:34.8366,35:45.6813,57:40.899,45:34.7055,38:36.6092,47:43.0447,14:28.7213,53:43.0109}
{0:33.2392,31:25.0293,34:43.101,4:35.0423,32:27.7262,5:27.2099,8:29.1844,6:35.7463,30:29.6849,24:35.0952,29:31.1145,17:28.4647,51:42.6806,36:50.6331,12:32.1802,23:30.0716,58:47.6696,21:24.8857,11:29.0445,10:24.0665,15:27.7434,7:30.4304,28:32.0212,46:43.9739,33:47.1507,55:46.0259,54:47.0523,25:24.3397,3:31.864,49:45.7391,41:49.6926,1:28.3997,26:24.3125,44:47.9226,37:48.8884,56:51.2746,42:42.5568,27:28.9057,50:47.6274,16:31.1865,40:45.4839,48:49.3372,39:42.0005,9:31.6642,52:43.1165,13:32.5782,43:49.509,19:32.8423,59:43.8997,2:34.7533,20:34.8554,18:35.2604,22:35.2971,35:52.5257,57:51.7641,45:49.108,38:47.7364,47:46.8536,14:32.5364,53:43.5597}
{0:33.1287,31:39.4094,34:43.2946,4:31.6554,32:40.8074,5:32.6719,8:26.6421,6:26.8639,30:47.1522,24:45.7318,29:47.9829,17:35.5935,51:40.1438,36:48.5256,12:35.8281,23:39.5633,58:40.4942,21:49.5392,11:24.9353,10:29.8986,15:32.7002,7:30.278,28:40.8349,46:40.2757,33:49.1253,55:46.5584,54:40.2066,25:48.9802,3:35.0963,49:50.0511,41:40.9969,1:26.6333,26:39.8442,44:41.5554,37:43.4789,56:40.0741,42:43.8634,27:42.2939,50:50.2141,16:31.1079,40:40.5485,48:47.0777,39:48.5961,9:33.7519,52:40.0781,13:25.4277,43:48.7577,19:29.0482,59:46.7472,2:34.6758,20:27.1177,18:31.911,22:44.4708,35:44.0232,57:50.2457,45:47.2492,38:49.9405,47:41.4875,14:25.1134,53:49.4532}
{0:33.8837,31:30.0334,34:35.2138,4:28.9608,32:25.0965,5:27.2433,8:30.8828,6:35.8248,30:25.4164,24:29.646,29:34.2579,17:29.1113,51:40.2739,36:29.3452,12:27.7761,23:31.98,58:38.7173,21:30.2703,11:33.6634,10:33.4967,15:25.723,7:24.5567,28:24.7671,46:46.7763,33:33.1849,55:47.2364,54:44.9706,25:34.5719,3:26.344,49:48.0399,41:41.3451,1:27.8213,26:27.8261,44:40.4156,37:28.6674,56:41.0847,42:40.8335,27:24.574,50:45.401,16:30.8461,40:41.2085,48:46.6257,39:47.4347,9:28.4342,52:41.2643,13:29.8179,43:47.416,19:32.7978,59:49.3909,2:32.4942,20:30.4484,18:33.009,22:34.8264,35:34.1397,57:49.2315,45:41.7824,38:30.7774,47:39.6169,14:27.5154,53:43.4819}
{0:29.4058,31:48.7382,34:52.0568,4:35.0893,32:42.2627,5:33.7581,8:35.7224,6:32.1927,30:51.6249,24:24.285,29:50.2948,17:26.1938,51:51.1148,36:44.3951,12:24.0885,23:27.4541,58:43.6126,21:29.5322,11:32.4181,10:27.4757,15:25.8409,7:28.7426,28:48.4173,46:49.9236,33:52.33,55:42.992,54:44.0393,25:30.6999,3:29.3203,49:50.8894,41:42.7951,1:35.8733,26:28.7893,44:44.3844,37:47.1922,56:44.1858,42:44.8607,27:24.5347,50:46.0325,16:24.4399,40:49.0687,48:51.3818,39:47.6053,9:30.1043,52:47.5227,13:30.564,43:41.8246,19:24.2795,59:49.7235,2:34.8102,20:30.8362,18:24.4902,22:32.3689,35:47.7856,57:46.0189,45:41.5396,38:42.3747,47:48.3445,14:33.652,53:43.6809}
{0:35.0041,31:45.5605,34:53.7525,4:25.4755,32:44.2532,5:30.1109,8:30.3878,6:25.99,30:48.4505,24:44.5187,29:50.2573,17:34.6505,51:46.606,36:52.2454,12:27.1001,23:49.283,58:45.0953,21:26.6888,11:29.7841,10:25.8247,15:30.8699,7:33.4812,28:46.3247,46:48.4215,33:44.4471,55:51.7563,54:51.4136,25:53.2986,3:33.6942,49:53.3478,41:51.2763,1:28.2296,26:46.9001,44:46.6482,37:52.8293,56:45.4177,42:54.4976,27:50.2165,50:49.9584,16:28.2777,40:49.0862,48:52.4973,39:53.5762,9:33.4129,52:55.0814,13:34.9215,43:45.4878,19:29.1194,59:45.183,2:32.4391,20:35.3056,18:33.8639,22:35.2362,35:54.2196,57:51.4052,45:54.1167,38:46.1473,47:53.2079,14:32.3785,53:46.5226}
{0:24.1608,31:47.3315,34:43.3688,4:27.284,32:37.62,5:29.8513,8:32.388,6:27.6186,30:41.6286,24:26.7721,29:37.9674,17:34.981,51:41.4303,36:42.8815,12:30.6918,23:26.774,58:44.0441,21:30.7631,11:29.0566,10:27.612,15:34.6512,7:25.1406,28:46.0668,46:44.0871,33:46.669,55:41.8382,54:41.9583,25:32.2154,3:24.7814,49:39.7969,41:39.202,1:25.9334,26:26.5232,44:42.8452,37:43.7985,56:42.746,42:36.8,27:44.5241,50:40.0128,16:26.1446,40:38.8836,48:37.8638,39:38.5502,9:28.1698,52:36.8268,13:34.1485,43:46.8368,19:35.776,59:45.0856,2:28.7254,20:32.9671,18:34.5208,22:26.3704,35:36.8128,57:43.6857,45:47.1064,38:42.6891,47:45.9379,14:34.1984,53:40.1703}
{0:27.06,31:29.7617,34:49.2865,4:29.5931,32:26.3491,5:33.0799,8:32.8966,6:31.7318,30:29.4852,24:26.9447,29:26.2228,17:24.2982,51:44.7249,36:41.157,12:33.9476,23:33.4049,58:45.1031,21:26.7971,11:26.4956,10:27.3266,15:35.7003,7:31.1365,28:35.913,46:45.5911,33:27.6891,55:46.7993,54:44.2192,25:33.0196,3:32.8313,49:46.9818,41:42.9156,1:30.7668,26:28.1242,44:40.569,37:40.8654,56:48.8605,42:44.6837,27:28.4345,50:47.576,16:35.1624,40:40.0142,48:48.5399,39:40.7952,9:27.4056,52:42.2586,13:33.5591,43:49.7444,19:25.2467,59:48.599,2:35.3849,20:33.1335,18:27.3149,22:29.0114,35:41.3868,57:46.4504,45:41.0428,38:40.3781,47:41.0578,14:32.767,53:47.1742}
{0:30.9643,31:32.6829,34:33.3663,4:35.2993,32:26.0858,5:27.8756,8:33.4908,6:34.9042,30:34.8668,24:35.2755,29:28.7904,17:32.9594,51:37.1096,36:34.1544,12:25.965,23:35.375,58:44.0864,21:26.1328,11:31.853,10:26.9491,15:34.7221,7:25.1336,28:31.889,46:33.5795,33:34.5058,55:43.2961,54:39.1895,25:33.3075,3:31.4164,49:43.1144,41:39.173,1:27.7563,26:24.1733,44:35.7935,37:31.0895,56:42.5019,42:35.0814,27:35.8601,50:33.5692,16:32.5445,40:39.1708,48:44.3835,39:33.8325,9:26.2929,52:38.5234,13:31.1149,43:42.0256,19:26.6363,59:43.9799,2:27.5143,20:27.7343,18:34.4349,22:34.9494,35:24.4899,57:43.9098,45:32.9149,38:40.1344,47:38.9494,14:29.3948,53:37.5128}
{0:24.415,31:44.9014,34:51.9663,4:26.0351,32:54.4623,5:27.4298,8:35.9394,6:32.2944,30:44.1383,24:52.2461,29:51.2381,17:26.3653,51:52.0453,36:46.6255,12:25.4997,23:51.5139,58:45.2032,21:53.8476,11:34.1448,10:26.2863,15:26.6333,7:34.028,28:54.7745,46:51.6883,33:49.2617,55:54.9089,54:50.9333,25:54.5152,3:32.9036,49:52.6754,41:48.1392,1:34.8998,26:54.4469,44:49.8798,37:46.0291,56:53.9229,42:51.2837,27:52.2425,50:51.9983,16:24.0356,40:49.8813,48:44.2132,39:47.2079,9:27.1004,52:51.999,13:27.4133,43:51.9902,19:30.4612,59:52.0813,2:29.577,20:30.4403,18:24.5009,22:44.7549,35:48.2732,57:45.6751,45:55.1439,38:45.183,47:51.7831,14:25.4116,53:51.3777}
{0:25.6305,31:50.6357,34:45.2173,4:26.1916,32:50.5494,5:26.8426,8:28.7437,6:25.5607,30:50.8402,24:35.8135,29:43.4536,17:27.7394,51:41.1115,36:42.0387,12:33.9256,23:34.1316,58:44.3158,21:26.7251,11:35.0555,10:29.996,15:33.1001,7:34.06,28:29.2964,46:41.1379,33:43.9247,55:47.5492,54:43.2608,25:31.282,3:25.1703,49:43.9945,41:39.4733,1:26.2033,26:25.3492,44:47.5466,37:46.1178,56:47.7387,42:50.8163,27:29.3383,50:47.6245,16:28.7929,40:41.598,48:42.5161,39:43.4822,9:32.1343,52:40.0179,13:31.4024,43:50.9485,19:32.3902,59:41.0281,2:32.8232,20:33.1959,18:33.9689,22:27.6212,35:40.2959,57:44.3349,45:51.1101,38:41.0872,47:48.306,14:26.2213,53:49.4918}
{0:24.7991,31:33.3619,34:25.7439,4:34.9435,32:29.6724,5:28.3831,8:35.0456,6:25.8137,30:25.5614,24:24.4025,29:27.9318,17:25.8104,51:41.7357,36:30.8266,12:32.4207,23:26.287,58:50.3147,21:34.5822,11:33.1228,10:33.0376,15:24.8578,7:30.6544,28:29.5847,46:45.1986,33:30.578,55:51.4704,54:50.4987,25:30.6871,3:26.146,49:45.9889,41:46.323,1:32.178,26:33.1798,44:45.7017,37:31.2658,56:41.3267,42:52.0274,27:30.3276,50:52.9664,16:32.8041,40:45.943,48:48.093,39:45.2926,9:24.4443,52:41.3109,13:27.0248,43:51.0844,19:31.0734,59:47.7541,2:31.9929,20:33.1783,18:33.2183,22:29.0408,35:30.0951,57:41.8286,45:43.8002,38:45.6125,47:42.7735,14:26.0678,53:45.6565}
{0:30.5861,31:34.3993,34:29.3574,4:32.1545,32:24.9955,5:31.9999,8:27.4328,6:33.3369,30:32.2298,24:24.5618,29:29.5586,17:27.3189,51:51.0709,36:42.7706,12:35.5171,23:32.7773,58:46.5361,21:27.2569,11:25.868,10:33.3612,15:35.1818,7:24.8196,28:33.2734,46:51.7976,33:33.0722,55:50.0107,54:49.3016,25:27.6667,3:30.1245,49:47.7193,41:44.7268,1:24.3334,26:25.2261,44:50.6761,37:45.9089,56:43.7335,42:47.9951,27:34.7632,50:52.2823,16:26.5199,40:45.5417,48:51.9122,39:49.8146,9:35.3375,52:45.9629,13:29.8729,43:41.6359,19:24.5574,59:52.8872,2:35.0493,20:29.7797,18:30.8876,22:25.7292,35:49.9193,57:52.398,45:46.752,38:49.1793,47:42.7332,14:28.4782,53:43.5598}
{0:26.3296,31:35.3912,34:47.4935,4:28.4753,32:26.0689,5:29.0023,8:24.5494,6:33.7533,30:33.955,24:33.7372,29:27.0174,17:25.5199,51:47.8901,36:40.2321,12:29.462,23:24.9629,58:37.4817,21:30.3052,11:25.8747,10:24.022,15:33.3127,7:32.8834,28:28.5175,46:45.1507,33:46.9199,55:45.3222,54:41.8978,25:32.8272,3:35.2332,49:37.0226,41:42.0264,1:31.886,26:26.269,44:43.381,37:37.8224,56:44.7963,42:46.0489,27:35.3996,50:48.5952,16:33.515,40:44.5738,48:47.5692,39:40.2703,9:24.8442,52:44.5796,13:35.5351,43:40.6519,19:33.5455,59:43.9943,2:33.952,20:24.1623,18:29.0074,22:27.6201,35:42.0414,57:47.2097,45:37.8738,38:44.9876,47:48.6532,14:32.539,53:39.6655}
{0:32.485,31:30.2233,34:33.9696,4:29.5707,32:27.07,5:25.098,8:26.3785,6:25.3121,30:26.6858,24:29.8649,29:35.9721,17:24.2879,51:50.8589,36:32.3374,12:26.6032,23:25.9668,58:47.9432,21:32.2797,11:32.8048,10:35.2086,15:32.5992,7:28.2704,28:34.656,46:51.1215,33:24.1586,55:46.8683,54:50.7733,25:26.8467,3:33.9693,49:41.6839,41:41.5513,1:30.332,26:25.1689,44:50.1722,37:30.6691,56:47.9461,42:40.7754,27:34.5675,50:46.395,16:26.4769,40:43.1877,48:41.8741,39:51.0491,9:35.9651,52:51.0715,13:29.3632,43:45.4857,19:30.2134,59:41.1379,2:26.9734,20:33.2716,18:32.7953,22:34.3673,35:31.1924,57:41.6953,45:40.1493,38:35.6104,47:42.3056,14:26.2852,53:48.1103}
{0:28.01,31:50.4043,34:51.0297,4:25.2864,32:46.6734,5:34.1151,8:27.7453,6:33.7284,30:48.6508,24:45.578,29:48.3016,17:26.2959,51:41.6366,36:41.1353,12:25.7601,23:46.7979,58:42.0156,21:43.7712,11:30.3632,10:29.7003,15:30.7855,7:29.2979,28:50.657,46:43.7169,33:41.5228,55:48.0038,54:45.8978,25:41.0241,3:29.1425,49:44.9658,41:51.8082,1:27.9612,26:50.1076,44:51.2273,37:51.2104,56:43.3188,42:49.873,27:46.0318,50:42.0684,16:32.7857,40:51.0014,48:48.9354,39:43.5821,9:33.4049,52:44.4208,13:35.0001,43:43.7352,19:25.7605,59:46.2155,2:26.655,20:29.6331,18:25.7215,22:49.5215,35:42.8279,57:42.4085,45:51.3554,38:41.171,47:45.098,14:28.1499,53:43.0658}
{0:35.0357,31:41.4314,34:48.456,4:24.3393,32:48.3476,5:25.777,8:32.63,6:29.0941,30:45.7356,24:45.0662,29:52.7411,17:33.1731,51:42.0649,36:41.1799,12:33.3083,23:41.8695,58:48.9789,21:30.6089,11:31.8321,10:31.9444,15:35.7775,7:32.9106,28:47.0084,46:47.4153,33:44.7831,55:50.8418,54:43.9671,25:45.4426,3:31.2577,49:51.5212,41:44.0123,1:35.913,26:47.0998,44:47.6228,37:47.3319,56:49.8716,42:52.5497,27:50.0236,50:44.7845,16:27.6513,40:42.2074,48:42.7281,39:41.4377,9:29.0548,52:41.0976,13:35.2788,43:44.5825,19:31.8787,59:50.3226,2:30.9581,20:32.6462,18:27.8349,22:33.3582,35:51.2564,57:41.3367,45:46.9801,38:50.0332,47:44.941,14:34.8653,53:46.4142}
{0:29.8729,31:40.8787,34:37.5209,4:24.094,32:41.8177,5:35.5057,8:28.1738,6:32.4244,30:39.007,24:46.1564,29:39.1612,17:33.4684,51:41.0131,36:39.7569,12:28.0618,23:36.5999,58:41.2981,21:34.5175,11:35.6732,10:30.5295,15:27.7974,7:35.6754,28:39.8883,46:40.6878,33:41.1406,55:39.491,54:43.9645,25:35.8974,3:29.0283,49:45.2527,41:44.8513,1:27.1375,26:34.9606,44:42.7148,37:37.3472,56:44.9607,42:39.9739,27:44.3041,50:36.7919,16:35.003,40:38.6798,48:46.5633,39:41.3521,9:24.9269,52:44.2358,13:29.0283,43:43.5367,19:33.5418,59:43.5466,2:35.5832,20:32.4203,18:30.1135,22:42.4794,35:44.9747,57:36.7912,45:43.4937,38:40.7792,47:37.0178,14:32.8074,53:39.4521}
{0:25.5486,31:29.3111,34:32.7982,4:31.7527,32:31.091,5:24.0903,8:27.713,6:32.9176,30:35.5112,24:24.8817,29:33.9865,17:27.1206,51:42.373,36:47.5232,12:25.6635,23:25.3991,58:42.467,21:34.9226,11:34.8179,10:30.3514,15:24.4528,7:24.3716,28:32.8419,46:51.5325,33:26.995,55:50.1477,54:47.9947,25:27.9652,3:25.6022,49:42.8503,41:44.1128,1:24.9173,26:32.6117,44:42.5081,37:44.2583,56:50.8106,42:48.7685,27:35.8252,50:49.0009,16:29.8186,40:48.4648,48:52.524,39:41.394,9:32.1637,52:46.7311,13:30.3753,43:47.7733,19:32.4207,59:42.89,2:35.5421,20:34.5256,18:28.7349,22:25.4131,35:42.0241,57:47.6135,45:45.2112,38:43.844,47:45.769,14:24.2997,53:50.4731}
{0:30.8949,31:33.2636,34:32.3514,4:33.1544,32:37.6074,5:24.2648,8:28.7801,6:27.0461,30:32.3837,24:36.1224,29:43.6926,17:35.6144,51:41.7599,36:40.7405,12:25.4039,23:42.653,58:34.1247,21:39.2874,11:30.6827,10:29.1249,15:24.4653,7:34.66,28:37.0716,46:42.2289,33:33.4193,55:41.0141,54:41.6509,25:34.1144,3:33.7188,49:33.016,41:41.244,1:35.6526,26:41.3108,44:34.1743,37:35.0894,56:41.1463,42:35.2208,27:32.6022,50:42.8344,16:34.8767,40:44.2985,48:33.254,39:32.3257,9:35.6699,52:39.438,13:33.0883,43:35.154,19:34.3997,59:33.7751,2:26.5059,20:32.9606,18:31.9808,22:42.1819,35:43.7771,57:35.4533,45:32.9393,38:33.9209,47:36.472,14:34.3196,53:34.8308}
{0:24.8027,31:47.2349,34:47.5419,4:30.2582,32:49.0523,5:27.4614,8:30.9819,6:35.801,30:48.4938,24:27.1078,29:47.0814,17:35.2641,51:50.2535,36:49.6064,12:25.4968,23:33.4522,58:48.1229,21:32.7365,11:29.0004,10:25.1479,15:32.3587,7:31.9856,28:49.7012,46:48.2822,33:46.6037,55:48.4669,54:41.929,25:50.2946,3:32.5511,49:44.0996,41:50.248,1:32.7975,26:45.9834,44:47.4766,37:49.4408,56:42.0329,42:39.9812,27:42.3803,50:41.6403,16:30.6687,40:39.7594,48:46.8336,39:50.6908,9:32.182,52:46.7671,13:28.6229,43:42.056,19:25.8736,59:44.1481,2:32.0858,20:28.8822,18:31.8963,22:25.2783,35:50.1249,57:49.194,45:45.393,38:49.3376,47:46.4957,14:33.1897,53:50.3758}
{0:28.812,31:24.7128,34:40.9299,4:25.3069,32:24.6052,5:33.9002,8:26.4894,6:30.9059,30:24.8894,24:27.1966,29:25.8805,17:27.2,51:41.8336,36:45.3949,12:29.4716,23:35.3159,58:39.3835,21:24.7726,11:30.217,10:35.0287,15:29.393,7:35.8762,28:30.3973,46:42.5192,33:27.0233,55:44.316,54:34.3941,25:26.1772,3:26.1783,49:45.4481,41:42.0726,1:28.2116,26:31.3062,44:36.8754,37:44.7486,56:39.5197,42:43.0072,27:33.3428,50:35.043,16:31.4531,40:45.0611,48:43.3036,39:41.0815,9:27.5422,52:41.3118,13:30.1451,43:37.9201,19:25.9441,59:34.4631,2:33.1856,20:29.5766,18:30.9977,22:28.161,35:45.1551,57:44.0472,45:44.0795,38:44.3222,47:40.6713,14:35.747,53:41.325}
{0:34.837,31:40.1317,34:39.0661,4:34.638,32:45.6121,5:26.1563,8:28.5664,6:29.2891,30:44.5989,24:45.5728,29:47.1265,17:30.3837,51:43.8274,36:42.259,12:24.6386,23:45.9048,58:48.2157,21:25.8596,11:31.8284,10:30.3433,15:34.8029,7:31.6385,28:47.5466,46:49.8586,33:46.7711,55:43.2002,54:41.8812,25:39.3741,3:34.6413,49:43.8575,41:43.823,1:30.9834,26:47.0902,44:42.5601,37:40.1284,56:44.8472,42:42.4122,27:39.6565,50:40.5081,16:24.6467,40:42.0927,48:46.6943,39:46.738,9:34.5436,52:42.6046,13:24.2765,43:43.5718,19:30.2328,59:39.3628,2:35.2692,20:33.544,18:28.0203,22:24.0874,35:43.4628,57:44.1924,45:40.3961,38:39.2746,47:44.4238,14:31.1509,53:48.4044}
{0:31.9933,31:30.7638,34:26.2639,4:27.2862,32:27.6123,5:33.3457,8:32.6807,6:31.9092,30:26.3994,24:29.6475,29:29.8186,17:32.6568,51:49.1342,36:25.2603,12:30.3709,23:34.2818,58:40.4399,21:36.0286,11:29.1279,10:29.3746,15:27.9204,7:24.4825,28:27.0692,46:44.7287,33:24.4396,55:41.8262,54:40.4811,25:28.2777,3:27.4666,49:47.6128,41:44.8245,1:25.1799,26:34.3211,44:51.2737,37:28.7155,56:48.3418,42:51.8601,27:27.7265,50:45.631,16:25.6036,40:44.7045,48:41.0569,39:50.15,9:35.7547,52:44.5131,13:35.6544,43:42.0715,19:35.003,59:41.9323,2:32.5951,20:24.7003,18:35.1807,22:30.5288,35:30.188,57:40.0966,45:48.8074,38:46.5648,47:49.9788,14:27.3795,53:51.0463}
{0:30.2031,31:31.3811,34:35.8899,4:31.0183,32:44.4348,5:24.3055,8:33.7658,6:35.2505,30:24.13,24:32.222,29:25.8772,17:24.6276,51:36.3868,36:46.7989,12:33.4471,23:33.1416,58:43.9041,21:28.609,11:26.1537,10:30.1473,15:35.8476,7:29.4249,28:26.3961,46:35.6769,33:40.8015,55:42.6993,54:38.1531,25:32.4325,3:26.6242,49:37.1873,41:35.9604,1:29.8458,26:30.3922,44:36.7169,37:45.424,56:38.0165,42:43.3893,27:25.7862,50:47.0765,16:28.7041,40:37.6214,48:46.0715,39:44.4039,9:30.957,52:39.2724,13:31.3099,43:42.0537,19:31.4388,59:42.581,2:25.398,20:32.1196,18:26.2962,22:29.3199,35:35.5392,57:38.4939,45:46.5812,38:46.0333,47:41.6476,14:27.63,53:40.9333}
{0:27.3399,31:32.8768,34:53.8941,4:28.562,32:32.7174,5:24.4546,8:35.4022,6:35.4881,30:27.3351,24:31.6554,29:29.7723,17:35.2516,51:49.4309,36:49.6873,12:34.403,23:26.6429,58:49.2477,21:32.8643,11:25.2974,10:30.9239,15:34.7202,7:29.4209,28:28.508,46:48.6789,33:28.541,55:44.4786,54:44.2869,25:28.176,3:26.348,49:46.7517,41:51.888,1:24.9283,26:30.8446,44:45.7944,37:53.9679,56:45.0533,42:52.0268,27:31.6161,50:47.8401,16:29.1943,40:51.9335,48:48.579,39:50.6424,9:33.9953,52:49.0516,13:24.8578,43:47.2265,19:27.9586,59:47.4615,2:26.0417,20:28.6457,18:32.1137,22:34.3824,35:45.5553,57:47.2071,45:46.163,38:50.8095,47:48.7332,14:34.8855,53:46.3099}
{0:35.913,31:27.6619,34:31.3268,4:27.5315,32:26.727,5:24.791,8:33.3369,6:29.3816,30:32.1967,24:30.806,29:25.0881,17:26.9734,51:42.8436,36:30.7855,12:32.1504,23:32.6326,58:42.9035,21:33.424,11:28.0912,10:34.0629,15:35.8384,7:30.9162,28:24.6342,46:52.547,33:31.8277,55:42.945,54:42.3457,25:26.4956,3:30.1664,49:42.1044,41:45.4788,1:29.8549,26:27.5,44:44.3456,37:25.0767,56:43.4415,42:47.0152,27:33.7519,50:48.8679,16:33.807,40:47.4262,48:45.694,39:53.6032,9:32.6825,52:53.4827,13:29.3372,43:41.9667,19:30.694,59:47.0538,2:33.2503,20:35.0937,18:24.0885,22:34.0861,35:25.6466,57:51.0914,45:51.5787,38:42.6002,47:43.0217,14:28.0798,53:52.0843}
{0:34.6989,31:32.2472,34:40.3044,4:26.7035,32:39.7058,5:30.755,8:33.8033,6:24.6379,30:37.9718,24:34.0954,29:40.5027,17:32.9848,51:35.5533,36:36.6315,12:31.5387,23:38.6137,58:34.7832,21:25.0183,11:29.9783,10:29.9468,15:34.8275,7:31.2148,28:38.7911,46:32.5549,33:33.0268,55:37.8367,54:33.5967,25:40.5545,3:27.8452,49:33.7789,41:43.8679,1:25.6092,26:36.3711,44:34.7788,37:41.1563,56:37.6031,42:33.1924,27:39.6698,50:37.0908,16:35.9255,40:35.8019,48:43.4577,39:41.7145,9:28.1705,52:34.7785,13:34.8616,43:41.0484,19:25.7667,59:43.3075,2:32.5066,20:31.4197,18:24.3125,22:29.1128,35:44.0089,57:43.2352,45:40.9845,38:33.4157,47:43.9623,14:28.1617,53:35.962}
{0:28.4874,31:24.7311,34:47.259,4:35.2501,32:32.778,5:30.795,8:25.3745,6:31.3183,30:25.0047,24:35.7227,29:27.2396,17:27.5022,51:47.7786,36:45.677,12:24.6834,23:27.0846,58:37.5626,21:30.7473,11:28.4621,10:29.7231,15:35.3405,7:28.0339,28:27.6626,46:46.9171,33:46.4027,55:48.3049,54:44.7733,25:26.7872,3:35.5274,49:47.5157,41:43.6827,1:34.1558,26:29.8898,44:44.8783,37:40.5437,56:47.1371,42:42.5601,27:28.0442,50:38.5618,16:27.7243,40:42.0555,48:38.7586,39:43.3738,9:33.6101,52:36.3254,13:35.2446,43:38.311,19:32.3021,59:44.185,2:28.6593,20:30.5857,18:28.5388,22:28.1797,35:45.3796,57:39.6036,45:40.5591,38:39.2136,47:43.3129,14:34.1507,53:42.0658}
{0:35.3258,31:28.9296,34:9.46672,4:26.8885,32:8.17668,5:31.2295,8:28.5994,6:24.7069,30:35.8513,24:33.4754,29:33.135,17:28.6115,51:10.5702,36:16.2853,12:35.1201,23:35.5461,58:18.0872,21:31.745,11:25.9837,10:31.7395,15:32.3359,7:24.8145,28:29.1378,46:8.34633,33:13.2678,55:11.8522,54:18.1441,25:27.7038,3:24.8255,49:16.6484,41:13.9402,1:27.6795,26:34.3589,44:13.3677,37:17.4075,56:18.4401,42:8.9214,27:35.7896,50:10.254,16:30.1722,40:18.9289,48:16.2496,39:17.9264,9:29.3596,52:19.1878,13:25.9859,43:11.3065,19:35.2112,59:15.4924,2:31.4366,20:30.668,18:33.5874,22:34.6949,35:14.0368,57:15.2299,45:11.7743,38:9.72671,47:8.51195,14:34.9615,53:15.4891}
{0:28.2421,31:31.3984,34:5.96756,4:28.6475,32:29.646,5:24.5306,8:35.5898,6:34.5803,30:25.1773,24:24.7242,29:28.9714,17:35.1881,51:15.8505,36:12.2092,12:27.6803,23:35.2861,58:6.59587,21:31.6558,11:24.0378,10:30.1329,15:32.987,7:33.2326,28:34.5396,46:9.94712,33:15.7261,55:14.7085,54:5.69362,25:27.7776,3:26.2705,49:8.6031,41:6.01053,1:28.916,26:24.2982,44:15.8535,37:11.2541,56:8.35853,42:13.0571,27:35.7363,50:10.8909,16:24.0474,40:16.9254,48:8.82049,39:7.35345,9:26.0965,52:17.5996,13:32.4251,43:15.9868,19:31.8071,59:7.3898,2:26.0876,20:30.4517,18:25.925,22:24.9445,35:16.535,57:6.35314,45:6.40161,38:13.771,47:14.2289,14:25.8581,53:16.7513}
{0:25.2155,31:24.3886,34:20.4285,4:35.7995,32:17.9222,5:31.2794,8:26.846,6:33.399,30:20.1968,24:24.083,29:22.4225,17:31.6268,51:26.5438,36:19.3092,12:29.4558,23:32.6532,58:26.9937,21:31.9782,11:32.7843,10:24.3959,15:34.9086,7:29.5344,28:24.2513,46:18.5748,33:17.0123,55:23.5686,54:17.2708,25:28.8477,3:27.609,49:17.6608,41:19.5439,1:34.8513,26:30.8736,44:16.9924,37:28.2253,56:24.6853,42:25.6291,27:25.1391,50:17.4419,16:31.9488,40:16.6854,48:28.0685,39:24.1433,9:31.972,52:20.9713,13:31.4586,43:16.8297,19:27.656,59:21.0572,2:30.5831,20:33.7478,18:33.4221,22:33.0997,35:26.3988,57:21.1835,45:22.6292,38:20.315,47:24.8329,14:27.2282,53:17.7948}
{0:34.9791,31:21.9855,34:22.1357,4:25.0987,32:26.2111,5:34.0783,8:28.8873,6:33.1805,30:23.6564,24:16.9506,29:17.996,17:33.457,51:23.8451,36:22.3983,12:25.8383,23:24.9435,58:24.2579,21:26.4278,11:35.931,10:32.9455,15:28.8954,7:28.2513,28:19.9133,46:19.8189,33:18.8498,55:17.1103,54:18.277,25:26.6885,3:32.4824,49:20.0547,41:20.4476,1:24.3371,26:25.5005,44:23.9806,37:16.7368,56:19.5971,42:19.7528,27:19.1524,50:21.0932,16:26.3642,40:18.5432,48:26.6624,39:23.4155,9:30.0837,52:23.1055,13:24.9717,43:15.8937,19:34.1499,59:16.3828,2:32.2926,20:26.3524,18:29.2553,22:26.6147,35:23.0725,57:18.3196,45:20.0088,38:18.4837,47:24.7367,14:26.1218,53:17.6692}
{0:28.9736,31:19.4437,34:16.8382,4:35.9853,32:26.4396,5:35.848,8:29.0643,6:27.6997,30:17.4412,24:32.6759,29:32.0006,17:35.7367,51:16.2786,36:18.0541,12:27.9906,23:31.1689,58:21.4333,21:34.7515,11:34.4742,10:28.3908,15:24.8685,7:24.6584,28:33.6564,46:22.7483,33:22.0884,55:20.1036,54:25.2986,25:25.5967,3:27.894,49:23.7706,41:23.8727,1:29.0261,26:24.6305,44:16.2555,37:24.0809,56:21.2845,42:26.3107,27:33.3579,50:24.1867,16:25.7006,40:20.4634,48:21.2115,39:17.3439,9:32.8158,52:25.1705,13:35.545,43:26.6349,19:34.111,59:22.9591,2:31.4039,20:35.7576,18:27.0861,22:32.2859,35:22.7681,57:19.0195,45:17.0413,38:27.261,47:19.8281,14:32.5136,53:21.0818}
{0:30.8222,31:16.0224,34:10.9959,4:31.8526,32:17.441,5:32.2577,8:24.2148,6:34.7195,30:11.9404,24:11.058,29:19.1522,17:24.6011,51:13.4493,36:15.0328,12:27.139,23:18.1791,58:16.6618,21:9.39669,11:30.5189,10:28.2697,15:27.2649,7:25.6051,28:9.56524,46:15.7992,33:10.9629,55:13.9943,54:8.5429,25:12.507,3:31.6264,49:12.8273,41:14.9814,1:26.5915,26:14.945,44:19.1923,37:8.99128,56:15.7654,42:10.4121,27:19.7963,50:13.1023,16:31.0025,40:13.2231,48:12.9246,39:17.1395,9:29.8303,52:11.5398,13:32.9532,43:19.5543,19:29.2567,59:8.96814,2:32.7472,20:25.3745,18:27.7456,22:11.8541,35:8.92922,57:16.0962,45:13.2969,38:20.548,47:11.8174,14:29.2079,53:17.9393}
{0:24.2141,31:20.5013,34:21.5174,4:29.0636,32:17.7457,5:32.6267,8:32.9363,6:24.7859,30:30.1777,24:33.9498,29:26.2,17:25.5919,51:19.6938,36:15.9695,12:29.5979,23:35.8127,58:22.4329,21:28.8444,11:25.9279,10:30.5545,15:33.8169,7:35.9475,28:29.4011,46:20.9791,33:13.8517,55:17.5235,54:13.2653,25:25.0198,3:31.9863,49:13.2014,41:23.5015,1:33.1496,26:26.4758,44:21.7091,37:16.9213,56:23.7681,42:18.7412,27:34.0368,50:21.6838,16:35.7749,40:20.505,48:16.0403,39:22.6507,9:24.5281,52:23.6065,13:24.9562,43:20.5619,19:34.346,59:24.0799,2:31.5207,20:25.7939,18:25.9341,22:35.2608,35:17.7538,57:19.3229,45:24.569,38:19.7676,47:23.3087,14:26.3766,53:23.6745}
{0:27.2609,31:27.5815,34:22.5161,4:24.0499,32:14.9621,5:31.1479,8:28.747,6:28.0045,30:35.9743,24:28.6596,29:27.2033,17:27.3112,51:17.8455,36:14.9474,12:32.547,23:35.8392,58:22.8437,21:34.1973,11:25.3077,10:29.0618,15:25.7403,7:25.8464,28:31.5129,46:23.2744,33:23.9846,55:19.8868,54:16.3795,25:30.8905,3:27.569,49:23.0512,41:20.3503,1:33.5668,26:31.5155,44:17.8113,37:24.624,56:25.545,42:16.551,27:33.1588,50:22.3736,16:33.3667,40:25.7197,48:15.0674,39:16.0182,9:31.4663,52:23.7746,13:31.4006,43:24.025,19:26.9767,59:25.4462,2:26.9679,20:27.9557,18:28.8198,22:31.4322,35:18.2725,57:15.2555,45:16.6351,38:15.5445,47:24.6633,14:25.8332,53:20.723}
{0:33.3153,31:27.424,34:21.2486,4:25.5475,32:26.3678,5:27.085,8:33.6366,6:35.6023,30:34.9821,24:26.1637,29:28.1892,17:24.4341,51:21.3592,36:12.4306,12:27.5374,23:34.331,58:14.815,21:33.887,11:29.3669,10:32.1963,15:34.6145,7:26.7314,28:25.9613,46:14.8487,33:12.0637,55:14.5965,54:12.3318,25:33.5316,3:27.5899,49:11.9382,41:18.6267,1:32.9826,26:31.6352,44:13.6663,37:12.7369,56:21.5953,42:9.85565,27:28.1679,50:15.2743,16:27.8106,40:14.3247,48:14.4474,39:10.701,9:35.1866,52:10.4491,13:26.6506,43:13.1808,19:33.7662,59:17.7127,2:29.2722,20:31.5853,18:25.2882,22:29.6636,35:18.8826,57:9.98087,45:17.9558,38:13.4283,47:16.1726,14:34.0703,53:16.7219}
{0:31.1828,31:24.1329,34:20.7138,4:27.1144,32:13.9595,5:31.9591,8:27.1875,6:35.6754,30:18.9937,24:29.6713,29:17.4125,17:29.953,51:25.5185,36:25.181,12:29.6107,23:30.741,58:20.1872,21:31.3951,11:30.3999,10:31.9756,15:33.2815,7:32.6612,28:28.1349,46:15.7222,33:14.3128,55:23.7617,54:14.9723,25:26.8735,3:30.6349,49:19.0029,41:14.1692,1:32.9833,26:33.609,44:20.2305,37:17.4338,56:15.4813,42:15.8055,27:35.2938,50:17.5248,16:32.9859,40:19.5152,48:25.1946,39:15.6873,9:27.4096,52:22.2752,13:34.1848,43:24.0121,19:30.6496,59:24.8083,2:32.655,20:33.4699,18:28.3148,22:25.2001,35:17.6655,57:22.9523,45:23.1576,38:20.6906,47:15.4636,14:26.789,53:13.9246}
{0:31.6969,31:22.8708,34:16.1007,4:33.5712,32:22.7335,5:32.6778,8:30.9588,6:32.5617,30:19.6294,24:32.9073,29:11.8553,17:31.8743,51:13.3811,36:13.459,12:27.0876,23:28.494,58:13.6749,21:35.9497,11:35.8381,10:25.9973,15:32.4064,7:35.4165,28:22.7103,46:21.1265,33:21.359,55:20.966,54:13.1373,25:32.0395,3:31.185,49:15.1449,41:21.9594,1:28.1591,26:32.6091,44:11.9082,37:18.5027,56:22.9766,42:12.1561,27:21.4746,50:16.5157,16:31.2577,40:20.792,48:15.0163,39:20.3014,9:27.2121,52:19.1641,13:35.3889,43:13.5071,19:29.848,59:19.7571,2:25.4696,20:26.1471,18:33.1709,22:35.0904,35:13.998,57:17.2545,45:19.8651,38:14.3557,47:12.5887,14:33.5169,53:20.756}
{0:27.2873,31:12.3719,34:18.0586,4:33.8999,32:13.8165,5:25.4061,8:27.3061,6:27.3439,30:16.7715,24:11.4476,29:21.9772,17:28.5675,51:20.0717,36:21.7205,12:29.1411,23:11.9485,58:13.9377,21:14.7511,11:35.7668,10:27.1206,15:31.9386,7:29.169,28:11.1248,46:11.0642,33:13.4831,55:17.6448,54:10.4979,25:13.4111,3:28.5708,49:20.4584,41:20.5939,1:35.6034,26:21.903,44:10.8751,37:21.3651,56:17.5383,42:14.7735,27:20.302,50:20.3556,16:26.359,40:16.9459,48:17.4031,39:15.0158,9:32.7211,52:21.1212,13:24.5898,43:18.8327,19:27.1529,59:16.0668,2:32.7002,20:18.5555,18:27.3366,22:12.1938,35:13.0608,57:19.0453,45:15.7352,38:15.9409,47:10.3863,14:29.0551,53:16.105}
{0:25.7094,31:30.6393,34:28.8414,4:32.5929,32:25.477,5:33.912,8:35.3372,6:34.7808,30:35.7106,24:27.052,29:27.7589,17:31.918,51:12.9822,36:11.702,12:33.8676,23:26.8577,58:16.4524,21:29.8583,11:24.6489,10:35.1554,15:32.4196,7:32.5922,28:33.1607,46:10.5604,33:24.2479,55:19.3365,54:10.585,25:28.1044,3:32.1148,49:11.2394,41:19.1085,1:31.6547,26:29.6489,44:16.1359,37:18.2863,56:18.1897,42:12.4214,27:24.2049,50:13.3487,16:29.9104,40:17.2184,48:21.1341,39:21.0551,9:28.2175,52:15.9108,13:29.2064,43:10.8486,19:33.2209,59:20.2542,2:35.516,20:31.5001,18:32.6961,22:34.8135,35:20.1419,57:11.5427,45:17.0818,38:12.9212,47:15.2714,14:27.7115,53:20.7136}
{0:32.1552,31:20.9664,34:19.0125,4:34.4845,32:14.9198,5:27.1713,8:24.4697,6:28.2968,30:17.9126,24:25.9764,29:21.2283,17:31.9011,51:18.6012,36:19.2842,12:25.7682,23:32.6807,58:13.3154,21:26.836,11:31.9147,10:24.7653,15:32.5606,7:29.3526,28:18.9295,46:18.8942,33:22.2532,55:12.119,54:14.4982,25:30.7877,3:32.265,49:23.1455,41:14.3205,1:25.8262,26:21.5786,44:20.9316,37:18.1539,56:21.2253,42:22.963,27:16.0024,50:18.4587,16:30.8512,40:12.4837,48:22.7115,39:12.5307,9:27.5723,52:17.8308,13:30.0242,43:23.1962,19:29.1458,59:14.4197,2:25.626,20:34.9729,18:27.7034,22:30.141,35:19.455,57:19.8159,45:12.2487,38:14.976,47:20.0286,14:30.8229,53:21.1188}
{0:33.5316,31:11.6198,34:12.3913,4:32.4861,32:10.2802,5:30.1888,8:34.7819,6:35.2145,30:15.4778,24:27.7005,29:14.1808,17:28.7437,51:15.1488,36:13.8249,12:29.0247,23:31.9984,58:18.0219,21:35.4907,11:27.2914,10:29.4062,15:25.5574,7:35.8373,28:17.4846,46:15.3529,33:13.2693,55:16.5236,54:16.5111,25:34.3277,3:28.5443,49:19.8213,41:20.2806,1:35.3441,26:33.9208,44:15.6401,37:16.2265,56:17.7608,42:19.9828,27:28.84,50:11.5562,16:27.6931,40:15.986,48:17.9231,39:19.7853,9:30.1454,52:16.3382,13:24.3026,43:15.3081,19:25.6896,59:15.144,2:34.8032,20:26.5,18:29.6526,22:33.6828,35:17.8717,57:14.263,45:8.52301,38:10.0528,47:10.737,14:34.985,53:17.4747}
{0:28.5778,31:14.9386,34:10.1758,4:33.3894,32:9.24233,5:30.7579,8:30.6797,6:30.802,30:14.3078,24:35.3353,29:27.4302,17:30.0731,51:16.7009,36:9.42484,12:33.9146,23:32.7387,58:11.3689,21:34.4904,11:33.4941,10:24.9041,15:31.5394,7:35.7896,28:32.4416,46:9.87505,33:16.4453,55:12.9913,54:12.1004,25:29.1778,3:33.4085,49:12.3846,41:9.29668,1:30.8534,26:34.6376,44:19.0214,37:16.3748,56:15.1784,42:10.9312,27:27.4901,50:16.1898,16:32.4648,40:15.914,48:12.7541,39:10.622,9:31.062,52:9.58165,13:30.6452,43:13.9516,19:30.7521,59:19.1143,2:33.1823,20:33.2583,18:28.1679,22:24.3489,35:19.9038,57:15.0433,45:10.1582,38:16.2199,47:12.558,14:27.363,53:11.2639}
{0:33.3759,31:18.0155,34:15.9851,4:35.6331,32:25.3661,5:33.6964,8:35.1682,6:29.5351,30:16.4742,24:16.374,29:25.9992,17:25.6338,51:23.4584,36:19.2611,12:25.6668,23:15.9175,58:19.8174,21:33.5327,11:27.9102,10:31.9022,15:30.5119,7:27.6017,28:22.3854,46:17.4643,33:24.3555,55:19.6389,54:25.4043,25:23.8153,3:31.5695,49:24.834,41:24.5131,1:25.4986,26:19.4491,44:20.275,37:21.7556,56:15.3025,42:17.2825,27:19.9845,50:18.3687,16:29.111,40:22.2183,48:20.4894,39:18.3886,9:29.35,52:16.8598,13:30.5846,43:19.2772,19:32.3142,59:20.6888,2:31.0451,20:29.921,18:29.982,22:32.7604,35:22.4188,57:22.5099,45:26.3209,38:25.1667,47:21.3076,14:28.3358,53:23.14}
{0:27.9461,31:15.4824,34:18.1851,4:31.2886,32:24.9493,5:30.78,8:30.8784,6:31.0363,30:18.4054,24:25.2687,29:25.9569,17:25.7876,51:25.1927,36:17.7092,12:31.8552,23:26.0164,58:25.8089,21:27.0395,11:33.2672,10:30.0966,15:30.654,7:29.6511,28:21.5698,46:18.6867,33:24.0147,55:17.8509,54:25.438,25:29.5373,3:30.1454,49:25.4002,41:14.8474,1:34.2957,26:17.6273,44:20.98,37:18.5934,56:21.8503,42:18.1473,27:19.5431,50:16.5131,16:33.0927,40:20.9381,48:25.517,39:26.1159,9:32.2606,52:15.7034,13:35.4304,43:21.948,19:32.7435,59:17.5994,2:33.1339,20:33.2951,18:25.5489,22:24.6089,35:14.7512,57:14.6624,45:24.4914,38:17.4705,47:20.3084,14:33.9913,53:16.4665}
{0:33.554,31:16.1614,34:20.2581,4:26.4949,32:21.7519,5:33.0193,8:27.594,6:27.5444,30:24.7709,24:25.9375,29:26.4035,17:24.889,51:16.1416,36:25.4833,12:30.1829,23:19.0242,58:26.9371,21:24.8777,11:27.836,10:27.0083,15:32.5882,7:33.7735,28:26.7876,46:26.8214,33:25.3591,55:17.0769,54:17.3596,25:19.1825,3:28.0824,49:24.0254,41:21.2364,1:29.8006,26:17.9086,44:19.4274,37:23.6383,56:16.3575,42:23.2531,27:19.0782,50:22.3131,16:28.7496,40:25.8652,48:21.9638,39:23.1162,9:32.7648,52:20.1354,13:27.8231,43:25.7785,19:33.4173,59:23.8811,2:30.0268,20:26.0072,18:26.4931,22:22.0788,35:16.3747,57:20.6727,45:20.1332,38:25.5112,47:16.7636,14:29.5278,53:22.5679}
{0:33.2069,31:13.4183,34:18.0875,4:26.4795,32:10.7662,5:35.0867,8:24.0672,6:27.302,30:33.4401,24:26.1908,29:26.2547,17:28.4316,51:12.8869,36:11.5646,12:25.5622,23:28.1944,58:19.6522,21:28.2296,11:24.4473,10:27.4919,15:35.4147,7:28.6909,28:31.889,46:12.8491,33:18.4694,55:9.29587,54:12.8821,25:27.1272,3:30.0918,49:19.4535,41:13.4704,1:31.6576,26:25.5974,44:17.9612,37:12.8138,56:19.339,42:12.8094,27:26.0619,50:17.2719,16:29.9258,40:9.8232,48:18.0243,39:11.7665,9:27.7879,52:18.5208,13:27.5132,43:14.8714,19:34.5583,59:10.7809,2:31.9569,20:28.9604,18:30.9287,22:33.8,35:11.4907,57:10.2929,45:18.5112,38:15.2481,47:19.6779,14:31.9712,53:18.7705}
{0:27.8716,31:13.4584,34:10.6385,4:34.9079,32:11.2103,5:24.3547,8:31.3477,6:30.2067,30:18.0387,24:18.0266,29:13.3703,17:24.2912,51:9.02496,36:18.3769,12:26.8996,23:27.1702,58:18.8822,21:26.7832,11:30.1451,10:31.127,15:26.427,7:28.6332,28:17.0972,46:16.2155,33:11.0131,55:11.6318,54:14.0122,25:10.5709,3:31.3723,49:10.3958,41:13.3214,1:27.0351,26:17.142,44:8.07055,37:15.2075,56:13.6148,42:14.5134,27:11.8599,50:15.1428,16:25.9911,40:16.8713,48:10.5052,39:8.22185,9:29.7808,52:17.0803,13:28.2241,43:16.5085,19:25.9925,59:18.4548,2:28.2645,20:31.4333,18:32.0388,22:30.8351,35:13.8579,57:15.0496,45:16.0117,38:9.26989,47:9.74617,14:28.1624,53:11.6774}
{0:29.8509,31:26.565,34:8.14042,4:25.2192,32:29.993,5:26.2419,8:24.029,6:25.7909,30:24.5538,24:28.4742,29:24.5082,17:25.7292,51:6.65538,36:7.82791,12:28.9116,23:34.8657,58:5.58567,21:34.3192,11:30.86,10:28.4092,15:25.5056,7:26.3381,28:33.1504,46:5.80527,33:33.8554,55:9.57184,54:10.2817,25:29.1341,3:30.3456,49:16.672,41:10.011,1:25.7777,26:30.4943,44:11.741,37:7.85876,56:9.1488,42:12.1005,27:34.6255,50:12.9455,16:30.4142,40:12.232,48:5.59265,39:6.12952,9:24.1634,52:15.1547,13:28.0824,43:14.8451,19:28.8833,59:9.82632,2:28.8859,20:28.8396,18:32.8533,22:27.1845,35:14.0027,57:9.65777,45:11.4403,38:10.0092,47:10.0716,14:28.002,53:10.5637}
{0:27.0112,31:29.3871,34:34.418,4:24.5461,32:33.2462,5:25.7461,8:30.105,6:33.5892,30:25.4641,24:33.1537,29:35.9067,17:27.7838,51:8.74318,36:35.5054,12:26.3127,23:32.3777,58:16.7229,21:29.4719,11:31.1013,10:32.8812,15:26.8885,7:35.8428,28:32.0399,46:10.1617,33:24.1322,55:13.4542,54:15.4343,25:25.9264,3:29.5579,49:18.9622,41:14.4413,1:25.9264,26:24.2515,44:19.1803,37:33.7306,56:10.2326,42:19.7054,27:27.0002,50:10.1662,16:26.969,40:16.8686,48:12.6012,39:18.4345,9:31.7403,52:9.08396,13:32.5162,43:13.9584,19:32.5874,59:16.1463,2:27.6876,20:31.0536,18:33.9384,22:31.351,35:29.5748,57:8.17509,45:15.3105,38:10.2381,47:13.972,14:27.6913,53:11.19}
{0:30.1384,31:24.4688,34:18.7274,4:31.9617,32:19.8364,5:31.4175,8:32.8107,6:33.9594,30:21.9064,24:32.5456,29:23.495,17:25.8346,51:27.754,36:24.3521,12:27.551,23:24.3893,58:17.5144,21:24.0878,11:30.2446,10:31.235,15:29.3206,7:28.1129,28:18.355,46:19.5151,33:17.1847,55:25.9913,54:23.1928,25:29.216,3:28.2601,49:27.0357,41:26.7071,1:31.0337,26:34.2285,44:18.1707,37:17.2508,56:24.6481,42:26.0005,27:25.0659,50:22.2714,16:31.7204,40:25.0318,48:17.6903,39:16.2758,9:25.6044,52:17.1678,13:28.7885,43:21.4529,19:28.5017,59:20.3839,2:25.8581,20:34.3409,18:25.9863,22:29.1701,35:27.0313,57:18.3715,45:27.1316,38:19.5474,47:24.9822,14:26.8673,53:26.8708}
{0:25.6319,31:7.27754,34:11.7896,4:25.8299,32:17.238,5:31.8243,8:34.1176,6:30.7579,30:8.93921,24:29.765,29:7.21769,17:33.8936,51:12.8505,36:10.5506,12:30.614,23:31.4641,58:10.7492,21:27.1188,11:27.1364,10:32.4012,15:26.6495,7:31.0036,28:33.3468,46:13.5603,33:16.2329,55:11.0882,54:9.2172,25:30.0158,3:33.038,49:13.4119,41:11.9203,1:35.9824,26:31.4127,44:7.8023,37:13.9565,56:14.764,42:18.6573,27:27.8661,50:13.5607,16:25.8666,40:14.7802,48:13.9606,39:7.35319,9:34.2737,52:11.9824,13:29.5828,43:9.18488,19:30.2086,59:9.34499,2:25.3374,20:33.2554,18:27.2029,22:33.2429,35:8.52352,57:12.3386,45:15.8925,38:10.7338,47:15.8863,14:32.9737,53:16.9031}
{0:33.3017,31:31.4579,34:35.0882,4:32.666,32:30.1671,5:32.5911,8:30.2097,6:27.6087,30:27.4298,24:26.2496,29:25.3426,17:28.0923,51:15.3915,36:32.854,12:35.8634,23:29.1113,58:8.53106,21:27.2488,11:35.0394,10:32.0946,15:31.4707,7:34.5748,28:32.9587,46:9.94449,33:27.0824,55:8.04045,54:12.1074,25:31.8019,3:26.5088,49:11.8184,41:17.6025,1:28.7812,26:29.3831,44:10.7722,37:35.9681,56:10.1064,42:16.2687,27:32.6499,50:8.44844,16:31.9698,40:11.7552,48:16.8824,39:18.9869,9:33.9803,52:18.182,13:29.9335,43:11.4997,19:28.7735,59:8.78371,2:27.331,20:30.4256,18:25.12,22:26.8966,35:27.0318,57:14.8006,45:7.61632,38:9.4212,47:15.6316,14:35.6923,53:10.9084}
{0:35.6754,31:5.0015,34:10.5252,4:24.0617,32:11.7723,5:29.028,8:25.8592,6:24.791,30:4.46316,24:27.1449,29:4.92989,17:31.6073,51:15.678,36:10.9001,12:28.9479,23:34.2766,58:12.784,21:26.5801,11:27.9619,10:30.4352,15:29.5072,7:27.4603,28:10.9097,46:14.2543,33:15.0861,55:5.79139,54:9.08425,25:33.9384,3:31.0572,49:7.69542,41:13.3539,1:32.2518,26:27.0156,44:4.36401,37:15.1514,56:10.1422,42:6.82695,27:12.5934,50:8.30023,16:35.8707,40:13.3638,48:13.1549,39:14.3744,9:28.45,52:14.1644,13:27.2363,43:14.9072,19:30.5079,59:12.4366,2:33.3593,20:32.4538,18:25.4083,22:27.5932,35:13.9345,57:16.0185,45:15.2003,38:8.88485,47:8.83894,14:28.649,53:10.8017}
{0:35.2219,31:14.4376,34:16.4456,4:26.4435,32:20.182,5:32.5371,8:28.5282,6:28.1613,30:29.9196,24:34.992,29:34.0189,17:27.3843,51:20.6458,36:20.3814,12:25.535,23:33.9182,58:11.053,21:25.2709,11:35.4716,10:33.2962,15:25.7421,7:30.5909,28:31.1465,46:12.9867,33:21.0748,55:21.0601,54:11.6321,25:26.4971,3:26.0436,49:17.1606,41:12.5116,1:27.0711,26:24.1528,44:16.8962,37:16.6733,56:17.3684,42:13.8071,27:35.043,50:15.63,16:26.2933,40:19.6503,48:11.3188,39:20.5952,9:33.4629,52:21.5459,13:30.6459,43:21.8599,19:31.7087,59:12.9937,2:28.0901,20:32.2085,18:26.5658,22:25.6114,35:17.2821,57:11.5832,45:19.7443,38:21.9983,47:16.6134,14:31.7516,53:21.6208}
{0:33.5866,31:32.1842,34:25.5122,4:34.0945,32:29.9445,5:28.7952,8:33.9193,6:35.986,30:28.2304,24:24.4524,29:31.8846,17:27.3836,51:17.1225,36:13.686,12:32.5518,23:33.8393,58:18.2682,21:27.4735,11:24.2997,10:28.5778,15:29.646,7:35.1256,28:26.1229,46:19.0776,33:35.9941,55:16.0675,54:22.453,25:27.309,3:34.5028,49:13.6288,41:20.769,1:33.9476,26:26.7938,44:18.5124,37:22.597,56:21.7741,42:22.1556,27:33.2642,50:12.5477,16:29.5307,40:10.9106,48:20.1906,39:21.5416,9:24.264,52:19.8674,13:35.5446,43:12.486,19:31.1097,59:22.6025,2:34.1544,20:33.2782,18:26.2808,22:29.1738,35:35.0346,57:11.7181,45:13.4404,38:19.3735,47:20.7914,14:27.6601,53:15.1461}
{0:34.5543,31:21.1059,34:18.3735,4:34.4845,32:17.072,5:32.5705,8:31.2695,6:35.5696,30:26.4071,24:26.3899,29:20.9499,17:30.6268,51:21.0329,36:18.8329,12:27.6898,23:23.8171,58:22.2432,21:21.3446,11:33.1974,10:29.6085,15:26.6253,7:34.7015,28:22.4852,46:16.0376,33:19.084,55:16.8873,54:21.193,25:26.7204,3:30.6412,49:23.6214,41:24.336,1:34.7485,26:21.9528,44:19.0609,37:25.2368,56:17.8168,42:25.9852,27:16.5561,50:20.9271,16:30.9111,40:24.8262,48:19.4145,39:25.1351,9:34.7089,52:21.352,13:27.8206,43:26.6987,19:35.0048,59:25.3885,2:29.278,20:32.1141,18:29.3588,22:18.5244,35:25.2048,57:26.402,45:17.9908,38:21.3814,47:22.0589,14:24.307,53:22.1947}
{0:24.126,31:33.3759,34:25.7939,4:28.7518,32:35.642,5:34.1312,8:32.4438,6:32.1938,30:34.7702,24:34.3049,29:28.7478,17:24.7179,51:23.2955,36:24.2681,12:33.5837,23:32.1328,58:15.9533,21:33.3994,11:33.1911,10:35.7253,15:29.7598,7:33.3318,28:28.3729,46:26.5781,33:28.6666,55:23.3014,54:18.597,25:30.9059,3:27.0655,49:23.0348,41:20.5208,1:25.8214,26:27.161,44:20.8249,37:26.7633,56:16.4539,42:19.4849,27:27.8066,50:25.4706,16:27.2936,40:22.8413,48:20.5267,39:26.7448,9:31.9415,52:23.6998,13:26.3913,43:22.3731,19:33.2359,59:21.3618,2:34.2616,20:32.2937,18:35.4051,22:29.245,35:28.3872,57:16.9816,45:26.8645,38:19.1327,47:22.2064,14:34.6303,53:19.0329}
{0:24.4028,31:23.8366,34:21.3953,4:33.2319,32:21.2525,5:32.9671,8:29.2795,6:25.5453,30:22.9376,24:33.2088,29:26.0381,17:33.9017,51:20.8636,36:27.4155,12:30.6694,23:25.4116,58:19.6404,21:31.1035,11:26.7428,10:30.6639,15:26.9954,7:27.7074,28:35.9387,46:26.341,33:23.1624,55:17.0129,54:18.0566,25:26.4692,3:32.5786,49:23.4238,41:26.897,1:30.7811,26:25.4707,44:27.305,37:26.6271,56:26.3583,42:18.5196,27:35.9886,50:27.1687,16:28.0827,40:21.7405,48:17.8983,39:16.4165,9:30.7925,52:25.8541,13:26.4589,43:21.5231,19:27.778,59:23.6849,2:32.6458,20:35.2443,18:30.1601,22:33.3762,35:25.4248,57:16.4775,45:18.0808,38:21.5892,47:26.8897,14:34.1176,53:19.9852}
{0:32.3814,31:17.6677,34:15.4155,4:31.9679,32:24.654,5:29.4209,8:31.2441,6:30.0793,30:26.3267,24:33.6645,29:31.5644,17:28.0765,51:20.6913,36:15.0832,12:30.159,23:35.9108,58:19.3356,21:27.7445,11:24.9768,10:33.7559,15:28.45,7:32.547,28:26.3546,46:24.867,33:25.6242,55:14.6179,54:21.9638,25:31.9345,3:25.9437,49:21.1225,41:21.7254,1:34.765,26:29.4572,44:21.6593,37:22.0203,56:18.3694,42:23.9181,27:32.7641,50:15.1019,16:25.4986,40:24.0786,48:14.0381,39:20.1192,9:24.7429,52:19.8768,13:31.3499,43:14.9645,19:25.9797,59:22.5814,2:25.5724,20:27.5708,18:28.8466,22:30.545,35:18.8108,57:25.1145,45:17.6005,38:22.7066,47:14.6432,14:27.5007,53:20.7978}
{0:24.8141,31:31.3818,34:13.6481,4:29.5351,32:29.2773,5:28.6137,8:29.4334,6:33.3024,30:32.3737,24:27.4419,29:28.479,17:35.0504,51:10.3177,36:11.863,12:35.5876,23:34.6053,58:9.3178,21:33.8444,11:32.5929,10:27.3531,15:27.9248,7:30.8486,28:33.5249,46:15.8124,33:20.8048,55:10.4316,54:13.037,25:29.2553,3:27.1889,49:9.61929,41:12.398,1:27.7141,26:28.1992,44:17.3023,37:9.94244,56:9.57155,42:18.6312,27:31.7461,50:9.95896,16:31.6007,40:9.65527,48:19.2243,39:14.2793,9:35.982,52:10.5766,13:33.9575,43:19.3381,19:28.718,59:11.7536,2:29.1789,20:27.6388,18:32.099,22:32.2411,35:19.0315,57:14.5301,45:10.6927,38:9.24031,47:16.6534,14:24.842,53:19.4648}
{0:34.1378,31:33.1911,34:33.6274,4:31.8357,32:32.9289,5:29.2028,8:29.8098,6:31.5199,30:30.8652,24:26.8026,29:33.706,17:28.7125,51:18.0676,36:33.6237,12:25.4582,23:31.1971,58:13.9838,21:34.0203,11:35.3985,10:29.9078,15:33.692,7:29.0386,28:30.0709,46:11.0284,33:31.1406,55:18.6331,54:14.2114,25:28.2671,3:26.095,49:20.0153,41:11.8073,1:30.3624,26:26.0524,44:17.9556,37:28.49,56:14.4692,42:12.0621,27:34.8506,50:10.8642,16:26.6756,40:22.2168,48:14.0627,39:11.9923,9:33.3131,52:21.5478,13:28.5319,43:20.7788,19:24.0984,59:20.4909,2:29.4841,20:24.1414,18:30.3019,22:33.2253,35:24.5016,57:18.9251,45:11.7166,38:32.677,47:15.2261,14:30.7561,53:12.7308}
{0:24.863,31:13.9949,34:20.8395,4:32.2276,32:10.3481,5:26.5889,8:32.7729,6:27.1203,30:19.6901,24:9.65917,29:19.6644,17:30.2203,51:15.6805,36:19.5991,12:24.0988,23:16.4028,58:18.655,21:12.9491,11:27.2492,10:32.7016,15:31.9485,7:32.3693,28:17.8798,46:9.38853,33:9.73188,55:21.2442,54:18.8437,25:19.2234,3:25.8464,49:16.3723,41:15.0232,1:33.3355,26:21.3724,44:16.3246,37:17.9638,56:10.5229,42:10.8897,27:16.1197,50:16.1568,16:33.2918,40:19.7764,48:12.9278,39:10.3022,9:35.5145,52:11.0021,13:28.9398,43:10.8728,19:27.9076,59:13.967,2:28.3622,20:28.9861,18:29.5729,22:11.3671,35:17.9249,57:15.78,45:13.1382,38:12.0222,47:12.049,14:31.1296,53:17.6422}
{0:33.2969,31:27.2356,34:25.3844,4:24.5372,32:29.9736,5:35.1256,8:31.8838,6:30.9059,30:34.9002,24:31.9562,29:33.9939,17:32.1493,51:25.9061,36:29.3978,12:35.1378,23:35.3658,58:20.0276,21:25.7215,11:26.2544,10:28.5227,15:32.7993,7:35.6115,28:30.441,46:20.7738,33:25.3646,55:21.9981,54:18.721,25:24.8571,3:29.2138,49:21.394,41:14.892,1:34.0637,26:33.6645,44:16.2706,37:22.0569,56:19.9204,42:21.235,27:27.5499,50:18.6997,16:31.8879,40:18.54,48:16.268,39:24.3523,9:34.2682,52:21.7418,13:33.1735,43:21.0327,19:35.5994,59:20.4242,2:32.59,20:33.4632,18:27.1427,22:27.0193,35:33.6028,57:16.6106,45:19.6773,38:22.6841,47:17.4203,14:34.6865,53:15.6122}
{0:33.9953,31:35.9537,34:11.1374,4:29.5579,32:27.3233,5:34.1485,8:29.397,6:27.1048,30:34.8649,24:29.783,29:28.1015,17:33.0865,51:22.7316,36:22.6181,12:32.048,23:28.3824,58:12.7403,21:31.8027,11:26.4615,10:32.8944,15:29.4885,7:32.8419,28:28.0005,46:13.1615,33:31.3694,55:13.6954,54:12.3885,25:31.3099,3:30.899,49:19.4259,41:18.0268,1:33.5187,26:30.2901,44:12.2577,37:13.3748,56:15.0273,42:13.9044,27:26.6084,50:19.7879,16:30.2012,40:20.7199,48:17.697,39:16.2031,9:29.4962,52:17.9985,13:33.6212,43:19.8148,19:24.4579,59:21.6696,2:35.9523,20:26.3396,18:33.3028,22:32.2595,35:13.8015,57:14.6796,45:13.9414,38:21.2293,47:16.3129,14:24.2633,53:13.4578}
{0:31.7748,31:15.2907,34:15.9774,4:24.8284,32:13.9206,5:33.0674,8:34.4904,6:34.3104,30:10.1111,24:7.9059,29:11.3677,17:24.6779,51:9.99097,36:11.8146,12:34.9699,23:12.9012,58:10.0284,21:16.2939,11:26.6921,10:25.5625,15:35.8281,7:28.609,28:9.33549,46:10.8492,33:10.5826,55:13.86,54:17.548,25:6.08339,3:27.6997,49:7.97347,41:15.829,1:33.5099,26:6.62394,44:13.6753,37:11.6747,56:10.8007,42:10.2763,27:11.3636,50:16.4496,16:29.3379,40:9.24405,48:17.498,39:16.201,9:35.7514,52:6.17777,13:30.5953,43:16.1448,19:33.9619,59:8.33224,2:25.6154,20:34.9277,18:33.3226,22:8.8783,35:16.3251,57:8.85076,45:9.32594,38:11.0107,47:6.77156,14:26.5448,53:16.1107}
{0:27.1687,31:32.1761,34:34.2796,4:27.7504,32:24.6698,5:31.7931,8:35.3082,6:28.0574,30:35.3882,24:30.7131,29:25.3708,17:29.1385,51:8.26224,36:8.65296,12:35.3126,23:32.8713,58:9.99515,21:33.569,11:30.5292,10:27.07,15:26.1989,7:28.3714,28:28.9141,46:15.7576,33:34.8245,55:7.98976,54:16.2096,25:26.8592,3:26.3256,49:18.9549,41:18.4008,1:28.9556,26:32.3381,44:18.4008,37:13.49,56:18.4485,42:11.7839,27:31.0422,50:15.528,16:25.2922,40:16.9885,48:17.3572,39:8.6537,9:35.1807,52:8.73191,13:27.5991,43:18.7456,19:33.2429,59:18.4427,2:26.5085,20:24.6147,18:25.4729,22:30.2997,35:33.8587,57:8.18916,45:18.2091,38:13.8715,47:10.1898,14:24.8788,53:10.4277}
{0:28.3791,31:25.3836,34:18.5584,4:29.1712,32:16.7859,5:24.0264,8:31.6547,6:25.4766,30:22.1017,24:23.0778,29:17.5196,17:34.9182,51:19.3652,36:16.6896,12:27.3347,23:16.1061,58:19.3744,21:27.5683,11:34.3336,10:27.0274,15:26.5999,7:30.405,28:19.5345,46:21.5814,33:20.2157,55:27.5891,54:19.916,25:25.6781,3:24.4697,49:22.6794,41:25.3164,1:26.5147,26:25.9406,44:17.9338,37:23.8038,56:28.0643,42:25.6887,27:23.8478,50:17.6716,16:31.5049,40:18.0509,48:27.6614,39:21.2626,9:34.696,52:27.1708,13:33.9322,43:27.2031,19:27.8654,59:23.2283,2:26.3957,20:29.8953,18:35.552,22:26.7567,35:22.5865,57:26.4683,45:20.3365,38:16.2526,47:21.2957,14:32.4435,53:16.3239}
{0:31.5897,31:9.13407,34:15.2912,4:31.4891,32:16.9257,5:24.289,8:33.9531,6:25.4035,30:12.8327,24:32.3454,29:11.1993,17:24.094,51:18.1196,36:7.85137,12:34.0284,23:34.1878,58:15.0404,21:28.2715,11:27.811,10:27.6538,15:32.6341,7:33.5925,28:9.88283,46:11.8981,33:8.5803,55:14.3875,54:19.3336,25:27.5664,3:31.8717,49:17.5996,41:10.0286,1:32.146,26:30.5817,44:17.3668,37:7.71733,56:10.3279,42:8.1804,27:31.806,50:15.9181,16:32.865,40:9.63165,48:15.4914,39:15.7631,9:26.1912,52:16.8659,13:24.5872,43:17.1945,19:24.249,59:10.5321,2:35.1469,20:34.5036,18:29.5839,22:29.7499,35:11.9606,57:15.3144,45:8.85645,38:11.2555,47:11.1042,14:27.6935,53:8.0941}
{0:32.7497,31:12.1184,34:11.8672,4:31.9044,32:11.2767,5:28.2462,8:30.928,6:24.1403,30:13.736,24:15.9283,29:14.5101,17:31.3594,51:19.8285,36:12.2755,12:26.1369,23:18.3347,58:20.9724,21:13.5685,11:27.8242,10:26.2228,15:34.5432,7:35.2064,28:14.2798,46:16.8577,33:17.2462,55:17.7787,54:16.4615,25:11.1845,3:31.0756,49:14.0977,41:12.8242,1:31.8846,26:13.6592,44:12.6674,37:11.6259,56:15.535,42:16.2569,27:9.95838,50:16.3168,16:26.5716,40:11.7578,48:10.4266,39:11.1665,9:31.9213,52:15.7032,13:25.6011,43:18.8183,19:26.4975,59:20.155,2:33.8753,20:35.9666,18:34.4389,22:15.1072,35:12.0798,57:17.2301,45:20.4976,38:12.4632,47:10.2878,14:26.7218,53:12.414}
{0:31.2889,31:14.704,34:17.1706,4:33.641,32:11.7883,5:27.8815,8:28.1569,6:27.9818,30:13.3001,24:33.5473,29:24.2919,17:26.6219,51:15.3573,36:8.66543,12:29.4774,23:25.3121,58:14.318,21:34.2098,11:25.9933,10:31.3848,15:27.9017,7:35.7793,28:30.2673,46:10.8772,33:16.9697,55:8.52479,54:13.151,25:25.1909,3:33.7747,49:17.3494,41:9.00842,1:33.294,26:30.5137,44:14.5538,37:16.0932,56:17.0693,42:15.2354,27:27.9983,50:17.3274,16:29.6673,40:7.43488,48:11.9877,39:14.6526,9:33.9311,52:15.2677,13:25.9264,43:9.29962,19:28.8153,59:14.6515,2:29.7194,20:29.0103,18:28.4114,22:25.3881,35:8.34191,57:7.94935,45:13.5531,38:16.4347,47:10.3613,14:31.1696,53:15.7146}
{0:26.3036,31:31.821,34:16.8249,4:32.4178,32:24.0845,5:32.1093,8:26.6928,6:27.2444,30:25.8438,24:26.7328,29:26.1416,17:28.5322,51:18.289,36:23.1804,12:30.4638,23:29.5814,58:21.6965,21:29.7257,11:27.255,10:25.2309,15:29.1701,7:33.4923,28:35.7944,46:21.4427,33:30.6158,55:19.4524,54:17.9846,25:26.1864,3:28.7136,49:24.4815,41:18.8773,1:30.6055,26:30.1146,44:21.1232,37:23.5017,56:20.857,42:18.3357,27:32.2801,50:17.0453,16:28.7687,40:26.828,48:20.6708,39:27.294,9:32.4971,52:26.7707,13:28.8047,43:15.814,19:29.4253,59:24.7628,2:34.5858,20:31.6378,18:25.3091,22:26.4732,35:18.5131,57:23.8421,45:25.9647,38:23.4892,47:22.7173,14:28.7933,53:27.3847}
{0:33.6013,31:34.4169,34:18.0105,4:27.3766,32:22.654,5:26.4148,8:29.0919,6:31.7494,30:33.2168,24:30.7058,29:26.1016,17:28.1779,51:20.9997,36:22.239,12:27.1368,23:32.7982,58:19.995,21:29.44,11:26.5074,10:25.3352,15:35.3027,7:30.1091,28:32.3891,46:21.4998,33:24.2587,55:19.226,54:25.5701,25:25.0444,3:32.366,49:19.3049,41:20.9328,1:34.01,26:26.7688,44:27.2791,37:26.2186,56:22.7491,42:23.124,27:34.0886,50:16.4524,16:27.2962,40:17.0175,48:22.4215,39:24.251,9:28.754,52:26.9284,13:27.9869,43:26.8131,19:27.3274,59:20.2674,2:24.8024,20:26.1736,18:35.0327,22:28.6596,35:23.3763,57:25.8455,45:26.7632,38:26.6486,47:16.0712,14:25.8387,53:18.0637}
{0:24.7289,31:33.0009,34:14.7383,4:25.427,32:9.33617,5:33.8609,8:24.6357,6:26.7005,30:35.6005,24:29.9354,29:34.5656,17:34.4177,51:14.1442,36:7.33519,12:27.2224,23:31.2012,58:5.51305,21:30.1399,11:24.5949,10:35.5406,15:30.8861,7:35.4462,28:30.314,46:6.07967,33:6.57064,55:11.3327,54:14.204,25:30.7234,3:27.1184,49:6.80566,41:9.94943,1:35.5575,26:27.5356,44:10.7926,37:7.02857,56:14.3072,42:11.8296,27:27.0152,50:16.7551,16:33.2319,40:14.6194,48:10.1775,39:15.1915,9:24.9768,52:10.4602,13:31.9349,43:10.0945,19:31.6224,59:7.36751,2:32.6528,20:35.978,18:34.1287,22:26.7376,35:13.2247,57:9.7941,45:6.60883,38:11.1271,47:14.7049,14:27.5999,53:7.92311}
{0:33.9509,31:23.563,34:23.6287,4:35.7973,32:21.3105,5:31.3558,8:31.5467,6:30.7392,30:16.4867,24:27.4948,29:28.2428,17:24.6948,51:26.8198,36:16.8612,12:24.8982,23:24.7723,58:19.095,21:30.126,11:31.9654,10:26.0476,15:32.8217,7:27.4041,28:25.2243,46:20.8356,33:17.5255,55:18.7928,54:16.3993,25:33.2293,3:31.6951,49:26.153,41:22.1675,1:25.0987,26:27.8742,44:19.9378,37:19.0293,56:25.1038,42:23.7356,27:26.5918,50:18.5343,16:26.3612,40:28.2156,48:24.2827,39:23.1286,9:34.7731,52:17.2079,13:25.9268,43:17.5211,19:33.1302,59:19.4685,2:26.4949,20:28.3501,18:26.2507,22:35.6702,35:17.4029,57:18.2868,45:21.3622,38:19.7957,47:24.1432,14:29.6515,53:19.5298}
{0:29.5777,31:14.4706,34:12.2078,4:32.6352,32:5.53103,5:25.3323,8:25.2504,6:26.6073,30:12.9926,24:32.1589,29:4.45398,17:31.2599,51:15.0508,36:4.69965,12:32.9062,23:32.3609,58:13.2889,21:32.4035,11:33.4438,10:34.8881,15:31.6455,7:35.8399,28:32.9341,46:8.91753,33:14.0861,55:15.3516,54:16.1731,25:29.1088,3:25.4307,49:4.59352,41:5.12635,1:24.665,26:34.9556,44:10.1029,37:10.841,56:15.569,42:13.6301,27:28.0262,50:10.732,16:35.9368,40:11.1212,48:15.7522,39:14.0424,9:35.3937,52:9.44522,13:24.2123,43:15.3806,19:28.2381,59:14.6796,2:32.2536,20:32.651,18:29.1789,22:31.1358,35:9.41328,57:6.61212,45:15.3872,38:7.8783,47:12.8163,14:29.621,53:12.1953}
{0:30.4884,31:34.8381,34:19.1206,4:27.8382,32:17.5912,5:25.7381,8:30.7701,6:27.2859,30:25.4909,24:33.5789,29:26.1449,17:34.6295,51:12.6212,36:20.3776,12:35.7139,23:27.1845,58:20.4566,21:30.2589,11:26.0781,10:35.5891,15:29.0026,7:27.9616,28:25.5467,46:21.1789,33:21.0037,55:14.4327,54:13.07,25:28.9501,3:30.9588,49:21.8553,41:13.8525,1:31.4006,26:29.5101,44:22.9125,37:15.7679,56:13.1643,42:16.361,27:30.9526,50:13.2929,16:28.017,40:21.8979,48:13.6289,39:18.832,9:35.707,52:21.722,13:34.49,43:13.923,19:35.357,59:15.7367,2:28.7555,20:35.7947,18:31.3418,22:26.0403,35:20.57,57:12.6858,45:18.3157,38:17.3033,47:15.1881,14:24.083,53:14.6608}
{0:35.5314,31:32.1207,34:16.2926,4:35.5197,32:28.0361,5:29.6273,8:24.6661,6:24.9584,30:29.845,24:34.1742,29:24.1223,17:31.5074,51:17.7611,36:17.4189,12:34.234,23:25.5155,58:23.8088,21:35.1723,11:32.1075,10:31.8578,15:34.9274,7:25.2926,28:25.7729,46:19.4213,33:27.2343,55:26.227,54:21.3635,25:30.4704,3:34.1,49:20.6126,41:17.2378,1:31.9037,26:32.7883,44:26.5119,37:20.0056,56:27.5504,42:24.9112,27:28.5653,50:24.8811,16:32.5984,40:21.979,48:24.2712,39:18.2796,9:33.0263,52:23.2565,13:33.8878,43:26.0963,19:33.7743,59:26.6901,2:27.8117,20:31.214,18:28.476,22:27.9002,35:21.636,57:16.9143,45:18.2356,38:20.4602,47:22.4402,14:26.9972,53:20.7033}
{0:29.5329,31:17.0233,34:17.4827,4:28.4147,32:8.78178,5:35.328,8:33.8852,6:33.6314,30:9.51695,24:29.303,29:33.8628,17:25.7538,51:15.7105,36:14.8626,12:31.4924,23:26.781,58:19.3573,21:33.9917,11:27.9524,10:32.9778,15:27.0714,7:33.291,28:31.8897,46:12.9336,33:16.9447,55:17.779,54:11.7379,25:26.8173,3:35.4183,49:11.6163,41:15.0998,1:27.7688,26:30.6599,44:11.4037,37:18.6556,56:14.2945,42:19.7921,27:25.1744,50:15.1806,16:31.7939,40:15.5886,48:19.076,39:17.8763,9:29.3816,52:13.8454,13:32.2103,43:10.4137,19:34.9464,59:19.4837,2:35.3357,20:33.3718,18:25.2915,22:32.8507,35:8.7502,57:19.3228,45:14.7061,38:13.1484,47:15.2753,14:35.78,53:10.3417}
{0:25.2816,31:29.4484,34:7.8818,4:35.9982,32:25.2805,5:31.9404,8:24.8993,6:27.15,30:27.9924,24:27.5319,29:24.2938,17:28.0269,51:13.3923,36:7.20502,12:30.3408,23:34.1775,58:12.7394,21:24.4891,11:25.2441,10:34.8054,15:25.1332,7:26.4593,28:31.2203,46:7.51238,33:6.39126,55:4.9591,54:7.41176,25:24.307,3:34.1062,49:9.84018,41:15.2203,1:34.8095,26:33.728,44:7.36219,37:10.8188,56:12.5837,42:16.4839,27:28.9233,50:9.28274,16:24.7392,40:14.5847,48:14.736,39:9.90334,9:24.4884,52:9.32754,13:30.249,43:11.9668,19:28.0515,59:7.20648,2:27.1148,20:35.1818,18:31.0433,22:27.0288,35:12.1342,57:12.4063,45:10.3029,38:14.6206,47:11.3663,14:25.2783,53:16.1846}
{0:24.9092,31:20.8644,34:16.6965,4:26.8518,32:10.2786,5:34.8227,8:24.8872,6:26.919,30:19.585,24:21.9426,29:18.6644,17:30.0786,51:15.4858,36:13.6923,12:25.9573,23:13.4782,58:20.2651,21:18.8752,11:27.8727,10:29.1833,15:27.3424,7:29.2028,28:14.9397,46:14.1315,33:16.0674,55:10.3961,54:18.8583,25:13.2659,3:26.2562,49:20.4197,41:14.011,1:29.6467,26:10.6447,44:18.5576,37:14.2952,56:17.161,42:14.6959,27:21.9154,50:19.6229,16:26.8709,40:13.6107,48:12.0343,39:14.2809,9:28.9512,52:10.2716,13:30.2009,43:21.8317,19:29.0687,59:21.9011,2:27.2106,20:35.7679,18:27.7398,22:15.1652,35:14.213,57:15.7325,45:11.3421,38:11.764,47:13.5388,14:24.9566,53:15.9408}
{0:34.3765,31:21.4256,34:18.515,4:32.5052,32:18.0354,5:31.7671,8:27.5815,6:32.2467,30:21.3547,24:16.853,29:16.2236,17:24.7091,51:21.5956,36:15.9026,12:24.2266,23:13.8315,58:18.0285,21:28.5282,11:34.179,10:28.5128,15:31.4905,7:31.4457,28:16.1277,46:16.6745,33:22.4094,55:18.9212,54:17.659,25:17.7086,3:32.5658,49:16.2085,41:23.4956,1:29.176,26:21.0294,44:17.9356,37:21.9111,56:19.2711,42:21.3635,27:12.8114,50:23.2176,16:31.0447,40:17.1879,48:20.8638,39:15.5659,9:28.9211,52:14.7503,13:25.9819,43:12.9645,19:24.1307,59:20.1359,2:30.2714,20:29.2935,18:31.875,22:26.908,35:20.9835,57:22.2588,45:22.8934,38:20.3258,47:15.1421,14:35.6603,53:21.1539}
{0:24.495,31:19.6517,34:16.5245,4:27.6645,32:20.9267,5:28.6523,8:28.7511,6:30.1895,30:21.5238,24:15.9762,29:17.9713,17:34.4004,51:20.5316,36:24.0407,12:26.8625,23:19.2107,58:16.2645,21:26.4912,11:26.7938,10:27.3865,15:31.4369,7:24.1036,28:18.9415,46:22.8568,33:18.2276,55:21.92,54:17.473,25:20.2646,3:27.3795,49:19.3818,41:14.2183,1:29.9622,26:23.4289,44:17.4418,37:15.0655,56:21.1621,42:15.6376,27:20.6458,50:14.4552,16:26.0531,40:15.9946,48:23.8656,39:17.0397,9:31.5199,52:21.3788,13:27.5003,43:12.8567,19:33.8411,59:21.6531,2:30.0562,20:29.8796,18:32.7409,22:31.9621,35:16.1536,57:16.0923,45:18.9485,38:19.2434,47:21.7526,14:29.8884,53:12.7891}
{0:25.4435,31:20.2566,34:24.0628,4:29.9398,32:22.7628,5:29.6104,8:27.338,6:35.2553,30:16.6854,24:21.9887,29:24.1425,17:26.7754,51:18.9562,36:23.39,12:33.7838,23:15.9766,58:21.4107,21:24.1153,11:24.5394,10:31.9004,15:24.3562,7:35.6027,28:24.4307,46:16.3897,33:14.8739,55:14.8426,54:21.8125,25:23.7731,3:30.8365,49:20.6381,41:22.1323,1:25.846,26:20.2702,44:22.2205,37:19.7436,56:19.961,42:23.8913,27:15.7724,50:15.9425,16:35.9453,40:17.3842,48:14.861,39:23.6677,9:30.1752,52:16.7819,13:24.5372,43:19.4366,19:26.1695,59:24.1601,2:25.8053,20:32.2309,18:25.4553,22:18.22,35:20.5118,57:23.7731,45:15.8033,38:16.5811,47:18.9617,14:26.8232,53:15.5756}
{0:34.8693,31:26.8709,34:24.6287,4:28.2223,32:24.1212,5:26.2276,8:29.0955,6:28.6927,30:30.282,24:29.4249,29:34.9391,17:34.1712,51:22.3823,36:25.958,12:27.1463,23:31.0903,58:27.021,21:24.119,11:34.7761,10:25.0077,15:29.8832,7:27.8073,28:35.0599,46:16.5494,33:32.066,55:27.1113,54:26.259,25:30.6617,3:28.1309,49:24.6741,41:24.6172,1:25.6363,26:32.8415,44:19.6803,37:24.5068,56:16.3536,42:25.6615,27:30.8094,50:16.0525,16:29.2641,40:22.5644,48:21.3225,39:27.3632,9:28.999,52:17.4542,13:30.0815,43:24.2294,19:24.618,59:21.2725,2:33.2198,20:32.1038,18:26.1578,22:25.6841,35:29.5182,57:25.1361,45:16.9449,38:31.7593,47:18.2463,14:24.141,53:21.3996}
{0:27.1599,31:31.3495,34:18.723,4:27.4486,32:30.5729,5:32.0443,8:26.9958,6:34.4962,30:33.9528,24:27.3189,29:31.3194,17:32.5144,51:24.2996,36:23.585,12:30.2732,23:27.5194,58:21.5128,21:31.5688,11:26.5379,10:27.3516,15:25.6077,7:31.9532,28:30.1594,46:15.7357,33:30.7366,55:22.8223,54:17.4609,25:24.1432,3:28.0879,49:18.7414,41:21.7746,1:35.3985,26:28.1925,44:23.9225,37:22.7272,56:17.845,42:20.8988,27:28.7584,50:23.9317,16:29.9743,40:14.4056,48:14.9473,39:18.1223,9:31.9591,52:13.0473,13:28.7169,43:20.417,19:24.2534,59:17.5949,2:35.0878,20:26.4012,18:29.0386,22:26.1875,35:21.3788,57:21.3549,45:23.0136,38:13.4872,47:17.1425,14:30.0239,53:18.3962}
{0:29.2465,31:27.9208,34:26.5096,4:26.7112,32:26.2411,5:34.609,8:29.3269,6:26.485,30:26.8059,24:30.0088,29:27.7365,17:30.6951,51:8.80112,36:20.417,12:30.1417,23:24.1495,58:19.622,21:28.0938,11:34.0042,10:31.5478,15:32.8915,7:30.6537,28:26.4468,46:9.03834,33:30.3705,55:17.1142,54:9.48525,25:29.6265,3:32.2782,49:11.3555,41:19.6859,1:34.0574,26:33.3046,44:19.5482,37:10.6593,56:10.014,42:10.6218,27:26.7993,50:14.6608,16:25.9852,40:15.9773,48:17.3897,39:20.1614,9:33.7467,52:8.86832,13:27.8668,43:14.796,19:28.1298,59:17.646,2:35.0592,20:27.0156,18:28.6512,22:32.4688,35:9.82493,57:12.293,45:18.5611,38:10.4154,47:11.126,14:32.1589,53:11.0437}
{0:24.6911,31:28.7481,34:28.9637,4:30.2971,32:31.3598,5:32.6418,8:30.6346,6:27.1544,30:31.8262,24:34.1371,29:32.5015,17:26.077,51:26.2452,36:27.0472,12:30.9974,23:25.0337,58:24.502,21:30.4785,11:35.3923,10:27.497,15:26.6172,7:29.0533,28:33.7937,46:25.7153,33:30.9772,55:25.4814,54:20.1861,25:33.0296,3:32.8885,49:16.5454,41:25.7575,1:28.3233,26:35.7892,44:25.9411,37:21.9028,56:20.2782,42:16.9648,27:29.711,50:17.18,16:25.7061,40:26.3777,48:25.2515,39:24.7139,9:35.075,52:24.2097,13:31.8982,43:25.8012,19:34.8389,59:26.2514,2:25.7502,20:27.6223,18:30.5652,22:30.0819,35:29.0173,57:26.2085,45:17.4841,38:15.3722,47:25.7832,14:31.5666,53:15.276}
{0:26.1783,31:28.6762,34:18.0732,4:25.4142,32:33.919,5:29.1007,8:35.7833,6:24.8358,30:24.9559,24:27.074,29:33.0619,17:34.4691,51:17.1111,36:12.8006,12:25.7399,23:35.2593,58:10.1982,21:33.5495,11:26.3421,10:34.1867,15:29.6122,7:24.6676,28:29.7327,46:11.9759,33:10.652,55:14.878,54:14.0066,25:24.4979,3:28.3413,49:10.7093,41:10.359,1:29.9534,26:27.1996,44:18.2616,37:14.0455,56:15.7013,42:10.6741,27:34.7313,50:18.5326,16:31.7439,40:8.0323,48:8.49757,39:12.5777,9:25.3576,52:17.67,13:34.6574,43:13.5946,19:29.1668,59:15.2467,2:26.2624,20:29.2164,18:24.0048,22:28.3207,35:16.5279,57:9.91834,45:15.2485,38:18.8469,47:14.8244,14:32.0417,53:14.2699}
{0:32.9043,31:10.6824,34:12.0962,4:29.8061,32:16.808,5:28.5517,8:24.6213,6:30.2365,30:28.1261,24:26.1637,29:35.8586,17:25.1024,51:13.1692,36:16.0853,12:25.4131,23:28.3549,58:12.3984,21:32.9715,11:31.4421,10:33.9135,15:35.3258,7:28.7346,28:25.4986,46:8.65055,33:16.5986,55:11.1216,54:8.39496,25:32.1548,3:25.2695,49:14.8701,41:10.2094,1:32.7519,26:24.8773,44:9.80765,37:15.4985,56:13.6341,42:13.8783,27:29.8939,50:8.19372,16:35.3632,40:19.3917,48:15.6049,39:15.0651,9:26.6168,52:18.0877,13:27.6046,43:9.6806,19:33.0204,59:13.9594,2:26.1078,20:34.1297,18:24.7741,22:25.4402,35:19.2276,57:19.4215,45:16.9211,38:15.3527,47:13.9429,14:26.8056,53:13.7332}
{0:27.4537,31:9.70026,34:14.8909,4:24.4315,32:13.9416,5:24.7458,8:24.1645,6:34.8767,30:9.56218,24:28.7551,29:11.3142,17:35.1649,51:18.8246,36:13.4499,12:32.9433,23:34.3189,58:9.72266,21:33.9516,11:26.6682,10:29.5836,15:31.9297,7:30.2938,28:9.09692,46:15.2993,33:13.3313,55:12.5025,54:10.1721,25:26.7993,3:31.2956,49:16.8831,41:19.7158,1:27.905,26:34.6182,44:17.4732,37:10.1516,56:20.1701,42:16.2272,27:28.8972,50:16.6921,16:27.4269,40:20.2171,48:18.1944,39:16.8456,9:31.8133,52:10.1189,13:25.1446,43:12.2399,19:34.3732,59:9.80308,2:29.5909,20:34.8414,18:35.6265,22:33.0722,35:17.132,57:9.54309,45:9.77994,38:12.5675,47:14.0015,14:34.703,53:18.0075}
{0:31.6011,31:29.9963,34:25.196,4:33.6953,32:26.9954,5:30.2413,8:35.01,6:25.7784,30:32.4141,24:27.9065,29:27.2025,17:26.3675,51:12.5344,36:30.5167,12:33.6351,23:30.8942,58:5.07878,21:31.3139,11:32.3443,10:33.2627,15:26.4181,7:26.5257,28:25.0348,46:8.88061,33:32.7226,55:15.5699,54:5.0887,25:24.0191,3:34.3523,49:12.6674,41:12.6068,1:32.4457,26:30.6298,44:12.0148,37:32.8456,56:10.6076,42:14.0738,27:30.4102,50:10.2588,16:26.2617,40:9.80343,48:12.1349,39:14.3819,9:28.8906,52:12.6325,13:31.0495,43:6.6872,19:25.925,59:7.77564,2:32.6017,20:33.5132,18:30.3536,22:31.9804,35:25.34,57:12.9777,45:9.57943,38:30.6779,47:15.2912,14:26.2217,53:9.32421}
{0:26.9043,31:25.1141,34:18.1079,4:31.0242,32:16.1484,5:28.7302,8:28.7628,6:26.3458,30:25.258,24:28.342,29:25.0102,17:25.1332,51:16.6996,36:16.6754,12:29.4459,23:31.9297,58:19.1336,21:29.44,11:25.6819,10:29.7598,15:27.9392,7:26.0406,28:18.8615,46:17.3981,33:15.8135,55:25.1214,54:20.8393,25:35.5278,3:26.81,49:14.767,41:22.7264,1:24.3415,26:22.0342,44:15.6516,37:24.7796,56:15.9681,42:18.0616,27:25.3102,50:17.3518,16:25.1476,40:26.1526,48:22.2468,39:23.9489,9:34.7694,52:16.3566,13:30.3507,43:14.8356,19:28.0508,59:22.7,2:31.7311,20:32.3194,18:30.4781,22:35.7216,35:25.9627,57:16.2182,45:22.8153,38:20.6039,47:25.1861,14:24.672,53:21.4111}
{0:25.6158,31:29.1591,34:35.5825,4:30.6467,32:35.704,5:27.9208,8:30.7851,6:36.0004,30:26.0168,24:30.8997,29:34.002,17:35.5983,51:15.6864,36:16.1829,12:24.6966,23:25.4274,58:12.3517,21:24.0305,11:35.5865,10:25.9811,15:31.8721,7:31.3683,28:27.5293,46:14.4735,33:29.3467,55:22.7907,54:14.7317,25:34.1757,3:33.3391,49:16.7158,41:15.3592,1:31.6723,26:30.0599,44:18.405,37:15.4657,56:17.4865,42:14.9201,27:29.451,50:14.3806,16:32.7075,40:18.8129,48:13.8162,39:18.3293,9:33.1941,52:18.7814,13:28.024,43:20.8551,19:29.2101,59:13.1431,2:30.26,20:35.624,18:35.1025,22:24.04,35:28.5377,57:15.5987,45:18.4156,38:12.0745,47:13.5345,14:26.745,53:12.7079}
{0:31.08,31:29.8898,34:13.7694,4:31.5721,32:32.5489,5:32.7692,8:30.7264,6:33.1654,30:28.4169,24:26.3157,29:24.3445,17:24.9001,51:13.6163,36:11.4497,12:28.0802,23:31.4388,58:14.4432,21:28.5197,11:24.0867,10:28.1419,15:25.2228,7:33.3571,28:25.2181,46:15.557,33:33.3689,55:10.9624,54:15.8827,25:35.7209,3:28.2289,49:20.1381,41:17.8426,1:24.2622,26:25.7461,44:17.1992,37:9.48944,56:19.3199,42:15.8445,27:29.9905,50:18.4022,16:33.1735,40:16.196,48:11.6917,39:20.4175,9:32.5129,52:13.8836,13:33.1375,43:13.1003,19:30.1726,59:13.9644,2:33.9913,20:31.3859,18:33.6039,22:35.989,35:15.6286,57:19.6104,45:18.0971,38:11.5455,47:17.8224,14:31.4065,53:13.0904}
{0:29.3574,31:15.7339,34:17.4444,4:31.6025,32:19.2893,5:28.5924,8:26.0557,6:34.718,30:21.8473,24:21.7412,29:19.225,17:24.6353,51:21.4728,36:23.404,12:29.6262,23:20.8445,58:17.7113,21:29.9229,11:28.4276,10:28.4801,15:25.5655,7:35.0636,28:22.8381,46:22.461,33:15.3681,55:23.8057,54:23.0114,25:15.1562,3:33.5437,49:17.2861,41:17.2204,1:33.8995,26:19.7252,44:19.7825,37:18.109,56:17.8682,42:15.125,27:17.8671,50:18.2097,16:31.3936,40:23.9368,48:23.9941,39:18.5769,9:34.6817,52:21.9421,13:25.2526,43:16.4555,19:27.5066,59:24.5604,2:31.0488,20:33.3079,18:26.6638,22:31.4127,35:14.6524,57:19.4531,45:16.5142,38:19.1692,47:21.5029,14:27.656,53:18.9882}
{0:26.7376,31:8.98611,34:16.3713,4:35.559,32:11.1659,5:30.0481,8:25.5262,6:28.9086,30:19.9748,24:19.3042,29:8.86786,17:29.0636,51:16.2952,36:17.423,12:24.4913,23:19.8161,58:17.1751,21:12.4383,11:29.4738,10:26.1688,15:33.1423,7:25.4538,28:16.17,46:9.90416,33:18.4354,55:19.1599,54:10.4814,25:11.2228,3:29.3173,49:9.31514,41:11.4098,1:34.9821,26:14.3699,44:14.2737,37:19.7875,56:15.2119,42:20.2241,27:19.5169,50:17.3532,16:35.3559,40:17.8291,48:15.4345,39:14.7724,9:34.606,52:16.1249,13:33.4243,43:13.6366,19:27.601,59:17.3624,2:33.457,20:27.2627,18:24.2108,22:16.5042,35:14.465,57:11.7854,45:14.5969,38:12.2276,47:20.2003,14:28.3993,53:15.7117}
{0:34.0736,31:11.9255,34:10.7603,4:35.5046,32:17.2571,5:30.9853,8:30.3511,6:33.0707,30:17.8179,24:18.9698,29:18.9559,17:26.1581,51:9.10925,36:14.1233,12:32.3058,23:15.5661,58:13.2669,21:13.5398,11:31.7957,10:31.9404,15:31.734,7:24.3272,28:13.6,46:8.22058,33:8.68107,55:14.2602,54:12.8009,25:11.8454,3:31.1336,49:19.9595,41:9.69203,1:24.1785,26:18.2402,44:16.6086,37:17.4099,56:19.3984,42:16.6736,27:19.0267,50:18.1487,16:35.671,40:14.1141,48:14.8188,39:13.6213,9:29.5538,52:18.603,13:33.3626,43:17.8201,19:29.7418,59:14.3825,2:28.9501,20:27.4618,18:31.7432,22:9.0325,35:13.4652,57:13.6921,45:18.6279,38:11.3386,47:13.896,14:32.0384,53:15.5389}
{0:28.6358,31:11.3328,34:14.1417,4:30.2795,32:14.1615,5:35.2942,8:30.094,6:33.5495,30:6.47893,24:8.34257,29:14.853,17:25.636,51:8.0106,36:13.5064,12:27.7563,23:12.147,58:8.29079,21:12.4077,11:33.5826,10:34.3556,15:31.8941,7:32.7218,28:10.2073,46:13.675,33:5.53297,55:12.1238,54:11.031,25:7.50164,3:26.8827,49:12.4,41:8.49019,1:35.5542,26:11.2227,44:9.33039,37:5.2627,56:12.0195,42:11.2223,27:12.91,50:11.4213,16:34.3178,40:13.5016,48:12.0273,39:13.7892,9:32.9506,52:12.9512,13:33.0487,43:15.3913,19:24.8171,59:10.5966,2:28.9894,20:27.4643,18:32.5698,22:9.31423,35:15.0403,57:12.9097,45:15.9246,38:6.36142,47:13.5071,14:25.2184,53:8.77956}
{0:34.179,31:16.7353,34:18.0642,4:25.8882,32:15.4596,5:28.2443,8:31.6576,6:33.851,30:10.7015,24:17.9148,29:15.2855,17:28.6641,51:19.4938,36:9.39089,12:33.3303,23:17.7811,58:16.8671,21:16.1066,11:30.3713,10:27.1225,15:26.7317,7:26.0531,28:9.32295,46:12.8002,33:17.8777,55:19.5911,54:17.5942,25:13.6146,3:31.8299,49:14.9928,41:16.5601,1:27.0398,26:10.0265,44:9.08389,37:12.0668,56:13.3297,42:13.4619,27:16.432,50:15.9961,16:27.7743,40:10.2741,48:11.314,39:9.60608,9:34.3626,52:12.0114,13:24.2152,43:16.035,19:35.4595,59:18.7888,2:29.3324,20:14.8257,18:32.5742,22:11.6691,35:15.6215,57:14.4956,45:19.6345,38:11.5861,47:19.2449,14:28.884,53:11.9761}
{0:34.2888,31:35.5032,34:7.32031,4:27.8811,32:35.4084,5:32.3877,8:24.741,6:28.4602,30:29.5197,24:29.4121,29:34.6347,17:31.2937,51:8.19539,36:10.7828,12:30.6665,23:30.8861,58:12.5833,21:27.3854,11:29.7268,10:27.8782,15:30.2416,7:29.2266,28:26.3855,46:5.68838,33:30.8641,55:15.8391,54:9.31468,25:26.3733,3:28.6556,49:9.69585,41:10.6657,1:32.7982,26:29.1686,44:5.2602,37:12.4482,56:6.18927,42:11.4412,27:35.6023,50:13.9075,16:33.1856,40:13.7063,48:12.4753,39:12.3222,9:24.1157,52:14.9203,13:33.1585,43:7.07317,19:33.2848,59:11.525,2:32.1346,20:34.0706,18:32.7586,22:34.0736,35:16.1806,57:9.16926,45:4.2577,38:6.25941,47:14.6764,14:25.7013,53:12.9557}
{0:26.529,31:14.6315,34:12.1256,4:26.5434,32:12.2079,5:25.9661,8:34.378,6:24.0228,30:17.9321,24:31.0168,29:19.9155,17:26.3025,51:20.5236,36:12.2064,12:26.2775,23:33.7754,58:16.2135,21:25.2864,11:32.138,10:30.1417,15:27.7978,7:25.9705,28:19.1935,46:10.2051,33:14.2401,55:9.86283,54:18.8267,25:10.786,3:35.8638,49:20.0388,41:19.5343,1:28.9472,26:12.4528,44:10.6777,37:11.0978,56:11.2895,42:19.741,27:18.9093,50:21.0153,16:27.9436,40:11.201,48:14.2588,39:17.6027,9:24.7767,52:17.0056,13:30.6827,43:19.8784,19:35.101,59:20.5375,2:27.3931,20:26.9389,18:32.5059,22:28.0192,35:11.6416,57:18.8145,45:18.0111,38:12.8722,47:16.558,14:29.1859,53:17.5249}
{0:31.1949,31:26.561,34:28.0181,4:31.3973,32:27.2826,5:32.6458,8:35.5491,6:32.7516,30:34.1775,24:33.7152,29:34.1499,17:30.8589,51:21.7285,36:25.9163,12:35.1286,23:26.3139,58:16.4457,21:32.5368,11:27.8911,10:35.299,15:31.0491,7:33.0957,28:30.1054,46:23.4144,33:27.1467,55:21.8438,54:18.7419,25:32.8437,3:28.0141,49:26.7209,41:19.1602,1:32.0851,26:26.3296,44:20.1153,37:22.6036,56:16.2602,42:21.2221,27:34.9912,50:26.5369,16:29.1917,40:23.4071,48:16.0891,39:22.1034,9:31.4028,52:17.5635,13:34.7254,43:15.9496,19:29.1554,59:22.7035,2:32.9315,20:24.7054,18:26.4486,22:27.1669,35:34.4419,57:17.8444,45:15.1663,38:26.7473,47:24.476,14:24.9045,53:15.3617}
{0:34.916,31:18.9269,34:17.1555,4:33.8525,32:16.3458,5:33.0916,8:36.0235,6:24.6089,30:23.6553,24:24.1194,29:18.5586,17:30.6617,51:19.9008,36:19.5512,12:28.8961,23:15.8761,58:19.1675,21:17.3497,11:25.3947,10:26.102,15:34.5344,7:28.0563,28:23.0978,46:16.6223,33:23.6163,55:17.3431,54:16.699,25:19.8053,3:27.9406,49:24.9706,41:19.8736,1:29.66,26:20.2137,44:20.6305,37:26.9584,56:16.5855,42:16.7299,27:24.7621,50:22.0736,16:27.825,40:22.8419,48:16.2859,39:23.4992,9:34.0868,52:21.565,13:33.5172,43:16.5639,19:28.8278,59:19.7976,2:33.0619,20:17.5344,18:31.1766,22:17.5712,35:26.9088,57:23.4151,45:19.2486,38:21.9587,47:21.919,14:30.795,53:17.1206}
{0:27.5947,31:18.2743,34:13.5537,4:29.1936,32:15.9509,5:35.8311,8:27.4515,6:26.2125,30:12.289,24:18.8039,29:9.61603,17:28.2039,51:13.3503,36:19.8005,12:25.5056,23:17.4826,58:15.3906,21:11.7066,11:31.0304,10:27.6399,15:30.5853,7:29.3493,28:16.6494,46:13.1516,33:13.669,55:10.9751,54:9.83893,25:13.4076,3:29.3985,49:12.7455,41:13.2603,1:33.8099,26:20.4204,44:10.6685,37:14.1101,56:16.3196,42:15.8727,27:13.1799,50:11.4433,16:26.2834,40:20.713,48:18.4407,39:16.2366,9:33.0241,52:10.6384,13:26.7714,43:18.5696,19:35.3724,59:19.8545,2:33.0553,20:29.6177,18:33.0887,22:21.4985,35:12.5905,57:20.8867,45:16.642,38:10.9718,47:18.3988,14:30.8927,53:12.7029}
{0:25.5353,31:26.9642,34:21.9814,4:34.5186,32:24.3426,5:25.275,8:24.9834,6:30.6125,30:31.4634,24:25.9132,29:29.2623,17:26.0755,51:24.7716,36:17.664,12:28.9644,23:33.6494,58:18.6728,21:32.984,11:28.3945,10:30.2651,15:24.2747,7:34.7221,28:34.1004,46:15.3671,33:31.7682,55:26.0829,54:16.7471,25:35.4561,3:35.0056,49:18.7499,41:18.8637,1:35.6152,26:27.4438,44:25.5743,37:23.2322,56:18.2369,42:22.923,27:32.7262,50:27.067,16:26.9282,40:18.5861,48:18.896,39:17.1833,9:32.0406,52:23.3567,13:32.0355,43:19.2354,19:30.423,59:24.7631,2:29.1837,20:32.7281,18:24.7186,22:25.0091,35:26.8779,57:24.4359,45:24.6702,38:23.5083,47:18.5406,14:33.5018,53:23.92}
{0:35.6838,31:30.1535,34:28.9744,4:24.9717,32:24.4069,5:28.8807,8:30.2916,6:35.8513,30:34.4992,24:35.8935,29:32.7373,17:24.6973,51:10.3225,36:14.3751,12:29.4077,23:29.3482,58:10.1738,21:25.7972,11:26.3355,10:27.0854,15:27.1603,7:27.6538,28:29.9409,46:8.21723,33:31.575,55:15.4893,54:15.0651,25:31.5243,3:33.7974,49:18.1079,41:10.1668,1:28.1033,26:29.8241,44:14.002,37:12.6632,56:11.9001,42:16.3376,27:28.4841,50:18.5765,16:31.7817,40:10.3085,48:13.6076,39:18.8622,9:33.6623,52:16.6335,13:25.0961,43:9.0666,19:32.9848,59:15.1845,2:24.0815,20:35.2439,18:32.7262,22:24.7925,35:32.0465,57:17.5343,45:17.3434,38:14.2782,47:17.2898,14:31.2776,53:7.59369}
{0:30.4227,31:16.9244,34:23.8759,4:34.5932,32:23.502,5:30.7723,8:27.5819,6:28.6126,30:21.2234,24:25.3807,29:22.4235,17:24.5134,51:22.884,36:16.4125,12:35.4565,23:29.0159,58:15.3872,21:34.2263,11:35.6827,10:27.2205,15:28.0409,7:34.6369,28:28.1419,46:15.121,33:22.5333,55:18.7631,54:21.096,25:24.3004,3:31.8354,49:23.3342,41:22.6266,1:31.0532,26:26.6653,44:13.9286,37:12.6283,56:21.4651,42:22.0534,27:30.4175,50:23.9284,16:31.8765,40:12.7219,48:15.9953,39:21.056,9:28.8502,52:16.6303,13:27.4867,43:14.8896,19:28.8146,59:16.4059,2:32.5713,20:33.9267,18:32.1207,22:24.8854,35:22.7955,57:18.7234,45:20.8948,38:13.5511,47:19.2599,14:27.2528,53:18.8938}
{0:26.4567,31:16.0615,34:12.0236,4:32.2632,32:17.2822,5:31.0069,8:35.7125,6:35.1903,30:15.1031,24:10.63,29:18.6438,17:24.0911,51:11.5231,36:19.1623,12:26.4049,23:14.5431,58:19.2659,21:15.1641,11:27.1948,10:30.3217,15:32.698,7:32.0153,28:11.6795,46:11.0071,33:9.83239,55:12.0544,54:19.4741,25:8.4634,3:32.0608,49:14.5743,41:7.80204,1:26.511,26:16.3208,44:18.3434,37:9.00211,56:16.2246,42:12.2674,27:19.5046,50:18.8495,16:32.1901,40:17.8411,48:13.3313,39:12.1595,9:29.3592,52:18.7154,13:25.7663,43:11.5165,19:26.1857,59:18.1352,2:35.3419,20:12.0221,18:34.0754,22:17.9983,35:10.0773,57:9.51438,45:19.0603,38:9.98038,47:18.1793,14:34.9854,53:18.3214}
{0:31.7568,31:31.3532,34:24.2754,4:31.7494,32:31.781,5:25.6077,8:34.0743,6:32.9976,30:28.0607,24:31.2779,29:27.3608,17:33.1555,51:18.3092,36:12.9181,12:34.5998,23:33.1856,58:15.2562,21:28.2531,11:32.2489,10:35.8594,15:31.011,7:30.9059,28:26.2771,46:20.3121,33:34.4525,55:15.3065,54:19.8534,25:29.5792,3:34.01,49:14.2507,41:23.0956,1:28.7952,26:32.2353,44:13.5545,37:22.468,56:22.8595,42:14.9114,27:27.4934,50:21.117,16:28.6093,40:22.909,48:20.6216,39:12.5439,9:24.9533,52:12.1554,13:27.0362,43:14.2471,19:30.1921,59:16.6799,2:24.405,20:35.1708,18:34.5609,22:31.9242,35:26.175,57:18.9291,45:12.0239,38:13.5321,47:11.7558,14:26.8342,53:12.1076}
{0:25.7762,31:29.1234,34:27.9366,4:28.5234,32:33.6546,5:31.3657,8:26.995,6:33.4875,30:28.7004,24:24.8553,29:34.0802,17:24.365,51:14.1589,36:26.9168,12:24.6584,23:32.807,58:14.2559,21:33.2058,11:27.0946,10:33.4317,15:26.7053,7:30.3309,28:26.1126,46:8.94111,33:24.4179,55:10.9604,54:7.07269,25:28.9744,3:35.744,49:9.87091,41:16.4724,1:30.9915,26:28.7918,44:8.21328,37:35.1543,56:16.8811,42:17.0978,27:31.6341,50:11.4404,16:33.5147,40:7.05213,48:16.7456,39:13.99,9:30.8038,52:6.58246,13:32.4244,43:10.6266,19:26.0627,59:12.2281,2:32.8919,20:30.722,18:25.2831,22:26.4442,35:33.0729,57:16.4445,45:13.2894,38:30.6694,47:6.26077,14:24.928,53:13.1406}
{0:32.3256,31:21.3104,34:19.3858,4:25.1788,32:18.0876,5:28.721,8:24.3162,6:27.6487,30:21.9181,24:29.259,29:18.1185,17:30.5505,51:17.6451,36:10.4763,12:29.4312,23:26.0113,58:10.7484,21:26.6723,11:35.989,10:24.5262,15:25.0212,7:28.002,28:10.6772,46:12.6106,33:15.0592,55:17.2217,54:21.4422,25:22.1652,3:25.9253,49:11.8163,41:10.5057,1:31.8243,26:17.0866,44:13.9906,37:13.0942,56:14.1404,42:11.2019,27:17.8027,50:19.8749,16:27.934,40:17.6301,48:14.2311,39:15.567,9:34.7852,52:11.6764,13:25.8662,43:15.2512,19:32.9271,59:11.687,2:27.8797,20:27.9436,18:33.4019,22:35.0801,35:10.8542,57:17.398,45:11.5192,38:19.515,47:13.3057,14:27.7974,53:10.2989}
{0:33.9193,31:17.1343,34:19.6263,4:26.3807,32:19.8327,5:32.5125,8:28.6666,6:28.1004,30:19.7948,24:17.8258,29:21.5674,17:35.2567,51:12.7791,36:18.9025,12:29.8447,23:18.0535,58:10.3966,21:29.646,11:33.5415,10:30.1113,15:26.7439,7:33.5069,28:17.4479,46:13.5635,33:12.962,55:21.7301,54:16.0404,25:17.4362,3:24.78,49:13.2381,41:13.0009,1:27.1004,26:20.761,44:15.9915,37:10.3029,56:11.7116,42:18.0491,27:13.5246,50:11.7259,16:28.8488,40:15.036,48:21.4976,39:18.4111,9:27.3266,52:20.4628,13:33.6994,43:16.4091,19:24.8692,59:19.269,2:34.7235,20:31.5027,18:28.1301,22:33.5128,35:18.157,57:15.205,45:17.9749,38:16.9959,47:17.0069,14:24.2585,53:17.8515}
{0:33.5073,31:30.1417,34:9.14326,4:31.156,32:15.9122,5:35.7246,8:31.0572,6:30.798,30:26.8114,24:32.8952,29:28.1562,17:29.187,51:16.2842,36:11.5096,12:34.6332,23:29.5865,58:11.8934,21:26.0432,11:26.7314,10:32.4468,15:29.223,7:34.2307,28:28.6174,46:15.6893,33:9.7892,55:9.55161,54:13.529,25:33.7956,3:27.3017,49:10.546,41:9.82629,1:31.6525,26:35.7672,44:16.889,37:12.381,56:11.4674,42:15.5516,27:30.7282,50:20.494,16:26.1163,40:14.0321,48:20.0482,39:19.4768,9:33.7688,52:12.0513,13:27.1871,43:14.0159,19:34.1999,59:20.0655,2:27.3711,20:28.0783,18:29.4337,22:26.8063,35:9.88358,57:11.6033,45:16.2853,38:18.8584,47:13.9289,14:29.1547,53:9.52664}
{0:34.4533,31:27.4739,34:31.0165,4:28.5297,32:34.3229,5:33.8077,8:32.5999,6:28.6978,30:25.7726,24:24.318,29:34.4136,17:33.8646,51:17.0383,36:27.2881,12:33.8422,23:32.4038,58:14.3048,21:35.0353,11:31.2221,10:29.4664,15:34.3593,7:31.4028,28:30.827,46:23.3519,33:33.7056,55:19.8167,54:19.1447,25:29.7642,3:34.2102,49:21.81,41:23.2308,1:34.0717,26:35.0452,44:23.3079,37:24.9786,56:23.5054,42:16.4277,27:28.6993,50:18.9578,16:26.7101,40:18.1161,48:21.9418,39:20.0003,9:32.6076,52:12.5976,13:29.6232,43:20.5133,19:26.6388,59:20.614,2:31.214,20:25.1575,18:25.1567,22:24.3235,35:25.3437,57:21.2195,45:17.3799,38:32.1167,47:24.1308,14:27.6582,53:18.956}
{0:33.2066,31:26.3559,34:20.6424,4:30.1869,32:26.5414,5:25.5423,8:28.4063,6:25.4792,30:22.3966,24:22.311,29:23.0021,17:31.5798,51:21.5622,36:22.8567,12:24.7616,23:23.749,58:24.0369,21:30.5916,11:35.1877,10:29.2718,15:33.3942,7:34.2329,28:21.7176,46:25.8624,33:24.5705,55:15.1102,54:22.217,25:15.0827,3:30.0793,49:15.1888,41:24.5308,1:31.0572,26:25.9116,44:24.3384,37:18.8202,56:22.2567,42:24.9146,27:24.0612,50:19.6744,16:29.0456,40:21.5233,48:19.92,39:20.9787,9:32.7082,52:17.2158,13:33.5984,43:15.7973,19:28.8455,59:18.5095,2:31.0873,20:29.5821,18:32.7813,22:29.675,35:25.9858,57:22.6525,45:20.8278,38:25.4368,47:19.2051,14:33.7229,53:22.632}
{0:27.3894,31:29.3228,34:25.5871,4:35.8553,32:34.2807,5:35.6214,8:24.3536,6:31.1075,30:29.3155,24:26.5581,29:24.9078,17:29.4187,51:10.5841,36:31.0091,12:24.3154,23:34.4882,58:8.38737,21:25.4707,11:30.4509,10:25.3227,15:30.5809,7:27.6704,28:27.9417,46:11.6027,33:32.8988,55:11.2249,54:7.46308,25:28.9406,3:30.647,49:13.3547,41:5.57373,1:33.9344,26:34.0016,44:9.14458,37:29.1906,56:11.3468,42:12.8957,27:35.9592,50:10.89,16:26.9414,40:11.7493,48:8.52361,39:14.2669,9:34.2418,52:15.6293,13:31.4648,43:7.23834,19:25.452,59:6.82008,2:27.811,20:27.5565,18:28.5719,22:29.545,35:24.9203,57:8.38553,45:13.2251,38:25.5078,47:14.9731,14:24.3933,53:14.9441}
{0:29.8314,31:31.9536,34:15.7077,4:30.3727,32:33.3281,5:27.5176,8:28.6409,6:33.4577,30:26.0157,24:33.2481,29:35.8336,17:29.9016,51:16.9632,36:15.1925,12:32.5371,23:29.028,58:13.3847,21:28.5972,11:33.4809,10:25.2709,15:28.9839,7:24.3999,28:34.508,46:12.1013,33:21.801,55:14.9546,54:15.754,25:25.7549,3:24.9283,49:18.391,41:11.4865,1:24.632,26:29.4613,44:15.1562,37:19.5841,56:17.6444,42:18.2728,27:30.3298,50:15.9707,16:29.7947,40:19.5955,48:11.4307,39:15.0148,9:32.5334,52:11.799,13:33.4923,43:10.3415,19:27.1214,59:13.6612,2:31.6466,20:34.0637,18:26.4005,22:33.3388,35:17.8416,57:14.0527,45:20.7919,38:12.0186,47:18.7351,14:27.2495,53:18.615}
{0:27.5775,31:34.2197,34:27.793,4:31.7035,32:34.2891,5:30.8729,8:26.6436,6:29.1638,30:29.5256,24:30.3158,29:26.1846,17:29.2725,51:18.8441,36:16.1076,12:34.3644,23:35.5865,58:23.9595,21:29.9097,11:26.0531,10:35.502,15:32.6418,7:32.7857,28:33.9898,46:21.4245,33:27.2976,55:19.8984,54:22.5357,25:26.756,3:29.3232,49:19.9017,41:19.2579,1:28.9718,26:30.8431,44:25.1551,37:21.1194,56:22.3819,42:25.7842,27:33.9344,50:17.3187,16:29.5424,40:22.5023,48:23.3322,39:15.5946,9:24.2644,52:17.0689,13:25.582,43:18.547,19:33.276,59:22.6375,2:27.5752,20:26.9535,18:24.3503,22:35.2971,35:35.7503,57:18.944,45:14.9596,38:15.646,47:17.983,14:33.0582,53:19.4845}
{0:24.4135,31:20.7911,34:12.7691,4:28.5208,32:18.7335,5:26.0061,8:30.5064,6:26.9256,30:14.8168,24:28.0655,29:19.5039,17:24.7275,51:18.0119,36:12.7658,12:34.3225,23:35.1745,58:15.4598,21:24.3702,11:32.9826,10:24.1799,15:34.2586,7:29.606,28:15.6177,46:14.2237,33:20.5498,55:12.0534,54:18.4651,25:20.0581,3:29.7543,49:13.4481,41:16.5269,1:33.0384,26:13.8429,44:13.1477,37:18.4809,56:20.6034,42:9.53614,27:21.0595,50:10.0003,16:27.9432,40:19.7114,48:14.4686,39:19.0449,9:27.4845,52:12.4107,13:24.235,43:14.0963,19:27.8411,59:13.9105,2:34.179,20:33.5591,18:28.6795,22:29.4694,35:11.0887,57:20.798,45:9.09695,38:9.25485,47:12.8183,14:27.6861,53:17.8074}
{0:35.4855,31:32.6862,34:31.3899,4:27.6538,32:24.3272,5:28.6468,8:34.728,6:26.5819,30:34.5039,24:28.8018,29:31.8912,17:29.075,51:17.0688,36:20.2375,12:28.8161,23:28.9663,58:14.8504,21:26.218,11:34.7643,10:34.7059,15:25.0345,7:32.9414,28:32.9198,46:13.4726,33:35.9809,55:12.0023,54:11.1951,25:34.2917,3:30.1998,49:16.6201,41:14.5442,1:25.5996,26:26.2114,44:19.0074,37:10.0512,56:10.0171,42:10.6671,27:33.3634,50:20.4344,16:35.436,40:19.6034,48:10.684,39:10.5698,9:29.0474,52:18.7441,13:30.2714,43:16.4702,19:24.6254,59:10.8903,2:29.9137,20:28.1624,18:24.2666,22:28.7728,35:10.8316,57:17.1489,45:10.352,38:14.8765,47:12.1958,14:25.784,53:9.5992}
{0:31.0216,31:31.8251,34:31.4289,4:29.5608,32:26.8908,5:26.9657,8:33.7207,6:28.0493,30:29.0048,24:35.4907,29:31.3429,17:32.4225,51:9.21618,36:8.06973,12:24.0187,23:31.947,58:11.8976,21:29.1635,11:31.1009,10:30.4102,15:25.9319,7:25.6731,28:25.5284,46:6.7874,33:28.194,55:9.47691,54:18.2204,25:30.73,3:26.5702,49:15.0205,41:10.3953,1:28.1397,26:25.8203,44:14.1377,37:16.6039,56:10.3424,42:17.6887,27:24.6514,50:9.89077,16:28.6178,40:8.15492,48:16.6601,39:10.3421,9:26.2746,52:11.5499,13:35.6589,43:16.7905,19:33.7453,59:15.366,2:26.7303,20:35.1183,18:33.6656,22:25.477,35:16.9348,57:16.4302,45:15.7608,38:14.7428,47:13.0624,14:25.2526,53:8.87687}
{0:29.6254,31:26.37,34:24.7998,4:33.5488,32:24.1538,5:28.2935,8:25.3301,6:28.9244,30:18.6793,24:24.1245,29:24.582,17:35.7808,51:18.8795,36:25.463,12:31.387,23:29.1525,58:20.6572,21:29.8671,11:24.2666,10:31.817,15:29.2509,7:30.6922,28:18.264,46:21.75,33:25.9022,55:19.1361,54:22.3097,25:25.3763,3:31.4663,49:17.3331,41:21.3556,1:25.5034,26:15.9175,44:24.2809,37:22.2961,56:15.2851,42:25.9675,27:22.2307,50:26.7468,16:28.2719,40:25.7024,48:15.0791,39:24.5111,9:26.8728,52:21.3321,13:31.6536,43:15.5065,19:32.3223,59:24.1289,2:31.5978,20:28.5084,18:31.4722,22:31.474,35:17.2729,57:22.5278,45:25.0252,38:26.8757,47:16.837,14:34.8491,53:23.6915}
{0:27.4144,31:34.8473,34:32.0105,4:26.1251,32:28.8965,5:27.4629,8:27.558,6:30.4888,30:34.4423,24:26.424,29:26.6069,17:32.6741,51:11.4546,36:27.7728,12:32.8335,23:29.1209,58:9.98019,21:28.7052,11:32.2694,10:27.5106,15:32.6095,7:34.9292,28:35.0254,46:17.2361,33:34.4386,55:14.1176,54:11.5831,25:33.4519,3:31.9782,49:15.3225,41:14.3835,1:25.3973,26:33.6234,44:10.6357,37:11.5493,56:20.2289,42:15.5557,27:29.4565,50:19.1063,16:25.387,40:14.7151,48:18.3168,39:19.6781,9:30.6863,52:16.888,13:27.1294,43:9.57331,19:33.5194,59:10.7201,2:26.46,20:29.0122,18:34.6068,22:32.1156,35:34.8157,57:11.1314,45:16.6386,38:20.219,47:19.6428,14:24.9908,53:18.2691}
{0:35.899,31:21.3107,34:21.694,4:25.1009,32:20.8788,5:24.8564,8:34.2124,6:25.8141,30:15.8358,24:17.6979,29:21.4517,17:29.8553,51:16.0021,36:20.5325,12:24.5549,23:22.7028,58:18.0843,21:26.1073,11:34.3038,10:31.0315,15:29.0577,7:30.6301,28:24.5528,46:21.9393,33:22.5592,55:16.8464,54:17.5338,25:16.2812,3:35.827,49:26.2986,41:24.9586,1:26.6719,26:18.186,44:16.0682,37:21.542,56:16.546,42:18.9593,27:24.0163,50:21.8787,16:28.6365,40:20.8204,48:19.6707,39:26.0184,9:32.5874,52:15.2879,13:35.8704,43:23.3458,19:32.9785,59:17.4747,2:34.1911,20:26.1183,18:32.037,22:25.0956,35:25.8561,57:15.9268,45:22.8361,38:25.7658,47:25.7221,14:30.6834,53:16.9459}
{0:24.5383,31:16.3406,34:9.94326,4:26.6623,32:15.3491,5:32.11,8:35.8586,6:32.81,30:16.7511,24:12.675,29:7.99333,17:30.2629,51:11.5238,36:12.3313,12:26.8658,23:9.59991,58:12.9985,21:35.2641,11:25.4285,10:31.3007,15:25.6653,7:30.4829,28:18.1374,46:11.9145,33:9.47579,55:8.23496,54:13.1164,25:16.5749,3:27.1316,49:19.6283,41:9.7255,1:24.2802,26:19.7601,44:15.8224,37:8.64478,56:12.0419,42:14.5746,27:13.3489,50:19.6441,16:25.2959,40:10.349,48:12.4022,39:10.8356,9:25.3866,52:15.4185,13:30.8516,43:18.9589,19:25.2948,59:17.4599,2:28.2814,20:25.0223,18:29.657,22:26.1089,35:16.609,57:19.3096,45:17.3644,38:19.4568,47:13.762,14:24.4781,53:12.6699}
{0:34.3354,31:16.6505,34:9.27375,4:24.5189,32:18.0782,5:24.3933,8:26.7666,6:27.6961,30:13.6444,24:34.8249,29:6.27907,17:31.7612,51:15.1897,36:12.8791,12:26.3833,23:26.5812,58:11.6989,21:26.8485,11:26.2327,10:31.3705,15:27.685,7:29.8744,28:12.6937,46:9.44524,33:7.97526,55:15.013,54:9.84551,25:34.0258,3:31.1457,49:11.0276,41:6.32571,1:30.9375,26:8.8228,44:16.7155,37:12.7293,56:13.9132,42:12.1314,27:12.6338,50:10.6075,16:29.2769,40:13.3297,48:15.6964,39:17.8322,9:33.0887,52:9.07618,13:35.6614,43:11.8421,19:24.9401,59:10.1521,2:31.9529,20:33.4339,18:34.6501,22:28.7144,35:9.20801,57:11.7426,45:10.4253,38:6.97605,47:14.3998,14:32.6631,53:17.9085}
14/08/26 18:44:08 INFO driver.MahoutDriver: Program took 5349 ms (Minutes: 0.08916666666666667)



mahout安装测试

标签:mahout   hadoop   

原文地址:http://blog.csdn.net/wind520/article/details/38851367

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!